-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
47 lines (47 loc) · 1002 Bytes
/
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
{
"name": "graphqlviz",
"version": "4.0.1",
"description": "GraphQL Server CLI visualizer",
"license": "MIT",
"repository": "https://github.com/sheerun/graphqlviz.git",
"bugs": {
"url": "https://github.com/sheerun/graphqlviz/issues"
},
"author": "Adam Stankiewicz <[email protected]> (https://sheerun.net)",
"contributors": [
"Nathan Smith <[email protected]> (https://github.com/NathanRSmith)"
],
"bin": "cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"format": "prettier-standard *.js",
"test": "ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli",
"graphql"
],
"dependencies": {
"cross-fetch": "^3.1.4",
"get-stdin": "^8.0.0",
"graphql": "^16.4.0",
"lodash": "^4.17.21",
"meow": "^9.0.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.15.0",
"prettier-standard": "^15.0.1"
},
"ava": {
"babel": true,
"verbose": true,
"timeout": "1m"
}
}