-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.26 KB
/
package.json
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
{
"name": "graphql-depth-limit",
"version": "1.1.0",
"description": "Limit the complexity of your GraphQL queries based on depth.",
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"scripts": {
"docs": "sed -n '/Documentation/q;p' README.md > README.bak.md; echo '## Documentation' >> README.bak.md; jsdoc2md --heading-depth 3 index.js >> README.bak.md && mv -f README.bak.md README.md",
"lint": "eslint index.js",
"test": "npm run lint && nyc ava test.js"
},
"ava": {
"verbose": true
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stems/graphql-depth-limit.git"
},
"keywords": [
"graphql",
"complexity",
"query",
"depth",
"limit"
],
"author": "Andrew Carlson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stems/graphql-depth-limit/issues"
},
"homepage": "https://github.com/stems/graphql-depth-limit#readme",
"peerDependencies": {
"graphql": "*"
},
"devDependencies": {
"ava": "^0.21.0",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^11.3.1",
"graphql": "^0.10.5",
"jsdoc-to-markdown": "^3.0.0",
"nyc": "^11.1.0"
},
"dependencies": {
"arrify": "^1.0.1"
}
}