-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.25 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
{
"name": "gest",
"version": "1.7.0",
"description": "GraphQL testing CLI",
"main": "./src/index.js",
"engines": {
"node": ">= 6.9.0"
},
"dependencies": {
"apollo-link-http": "^1.5.14",
"args": "^5.0.1",
"chalk": "^2.1.0",
"listr": "^0.14.3",
"node-fetch": "^3.1.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"execa": "^1.0.0",
"graphql": "^14.3.1",
"jest": "^24.8.0"
},
"peerDependencies": {
"graphql": "*"
},
"scripts": {
"lint": "eslint src bin test",
"test": "NODE_ENV=test jest",
"coverage": "yarn test --coverage --silent",
"start": "node ./bin/gest"
},
"author": "Michael Fix <@mfix22>",
"license": "MIT",
"bin": {
"gest": "./bin/gest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfix22/gest.git"
},
"keywords": [
"cli",
"graphql",
"graphiql",
"gest",
"test",
"testing",
"graphicli"
],
"bugs": {
"url": "https://github.com/mfix22/gest/issues"
},
"homepage": "https://github.com/mfix22/gest#readme",
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"gest": {
"schema": "./test/_schema.js"
}
}