forked from sheerun/graphqlviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 938 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
{
"name": "graphqlviz",
"version": "1.4.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": ">=0.10.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli",
"graphql"
],
"dependencies": {
"es6-promise": "~3.1.2",
"get-stdin": "^5.0.1",
"graphql": "^0.4.18",
"isomorphic-fetch": "~2.2.1",
"lodash": "^4.6.1",
"meow": "^3.7.0"
},
"devDependencies": {
"ava": "^0.13.0",
"xo": "^0.12.1"
},
"xo": {
"space": 2,
"semicolon": true
}
}