-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "graphql-disable-introspection",
"version": "1.2.0",
"description": "Disable introspection in graphql-js with a validation rule",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helfer/graphql-disable-introspection.git"
},
"keywords": [
"GraphQL",
"Introspection",
"Node",
"disable",
"query",
"validation",
"rule"
],
"author": "Jonas Helfer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/helfer/graphql-disable-introspection/issues"
},
"homepage": "https://github.com/helfer/graphql-disable-introspection#readme",
"devDependencies": {
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"express": "^4.15.2",
"graphql": "^15.0.0",
"graphql-server-express": "^0.6.0",
"mocha": "^3.2.0",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
},
"peerDependencies": {
"graphql": "^0.9.2 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
}
}