forked from sheerun/graphqlviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "3.2.0",
"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": ">= 6"
},
"scripts": {
"format": "prettier-standard *.js",
"test": "ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli",
"graphql"
],
"dependencies": {
"cross-fetch": "^3.1.5",
"get-stdin": "^9.0.0",
"graphql": "^16.4.0",
"lodash": "^4.17.21",
"meow": "10.0.1"
},
"devDependencies": {
"ava": "^3.15.0",
"@ava/babel": "^1.0.1",
"prettier-standard": "^16.4.1"
},
"ava": {
"babel": true,
"verbose": true,
"timeout": "1m"
}
}