-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.9 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@hydre/disk",
"version": "2.0.0",
"description": "Store and query your GraphQL types in Redis",
"type": "module",
"bin": {
"hydre-disk": "./bin/index.js"
},
"main": "src/Disk.js",
"scripts": {
"test": "node --harmony-top-level-await --harmony_string_replaceall test/index.js",
"coverage": "c8 --check-coverage node --harmony-top-level-await --harmony-private-methods test/index.js",
"lint": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --list-different && eslint --color .",
"format": "prettier-eslint $PWD/\"**/*.js\" --print-width 80 --write",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydreio/disk.git"
},
"author": "Hydre",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/hydreio/disk/issues"
},
"keywords": [
"redisearch",
"disk",
"redis",
"hydre"
],
"publishConfig": {
"access": "public"
},
"babel": {
"parserOpts": {
"allowAwaitOutsideFunction": true
},
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-private-methods"
]
},
"homepage": "https://github.com/hydreio/disk#readme",
"dependencies": {
"debug": "^4.1.1",
"graphql": "^15.1.0",
"ioredis": "^4.17.3",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-numeric-separator": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@hydre/doubt": "^7.1.0",
"@sidy/eslint-config-sidy": "^1.4.13",
"babel-eslint": "^11.0.0-beta.2",
"c8": "^7.2.0",
"dockerode": "^3.2.0",
"eslint": "^7.3.1",
"eslint-plugin-unicorn": "^20.1.0",
"prettier-eslint-cli": "^5.0.0",
"tap-spec-emoji": "^6.1.2"
}
}