-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "grql",
"version": "0.3.5",
"description": "GraphQL client command line",
"keywords": [
"graphql",
"client",
"command"
],
"main": "lib/grql.js",
"bin": {
"grql": "./bin/grql"
},
"scripts": {
"clean": "rimraf dist/*",
"lint": "eslint .",
"test": "mocha",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- -- -R spec && cat dist/coverage/lcov.info | coveralls && rimraf dist/coverage",
"installbin": "pkg -o ~/bin/grql lib/cmd.js"
},
"author": "Olivier Penhoat <[email protected]> (http://headwood.net/)",
"repository": {
"type": "git",
"url": "git://github.com/openhoat/grql.git"
},
"bugs": {
"url": "https://github.com/openhoat/grql/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/openhoat/grql/blob/master/LICENSE"
}
],
"engines": {
"node": ">=8"
},
"dependencies": {
"basic-auth-header": "^1.0.1",
"bluebird": "^3.5.0",
"fetch-graphql-schema": "^0.2.1",
"lodash": "^4.17.4",
"lokka": "^1.7.0",
"lokka-transport-http": "^1.6.1",
"prettyjson": "^1.2.1",
"y18n": "^3.2.1",
"yamljs": "^0.2.10",
"yargonaut": "^1.1.2",
"yargs": "^8.0.1"
},
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-nodejs": "^1.1.0",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.4.2",
"rimraf": "^2.6.1",
"shortid": "^2.2.8"
}
}