-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1 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
{
"name": "graphql-access-checker",
"version": "0.2.2",
"description": "",
"main": "lib/app.js",
"scripts": {
"test": "jest && xo",
"sandbox": "nodemon ./sandbox/app.js",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jesse-Cameron/graphql-access-checker.git"
},
"author": "",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/Jesse-Cameron/graphql-access-checker/issues"
},
"homepage": "https://github.com/Jesse-Cameron/graphql-access-checker#readme",
"dependencies": {
"graphql-tools": "^4.0.7"
},
"peerDependencies": {
"apollo-server": "^2.9.16"
},
"devDependencies": {
"apollo-server": "^2.11.0",
"graphql": "^14.6.0",
"jest": "^25.2.7",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.2",
"xo": "^0.32.1"
},
"xo": {
"space": true,
"globals": [
"describe",
"test",
"expect",
"beforeEach",
"beforeAll",
"afterEach",
"afterAll"
]
}
}