forked from EasyGraphQL/easygraphql-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "easygraphql-tester",
"version": "3.1.0",
"description": "Test GraphQL schema, queries and mutations",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 98 mocha",
"standard": "standard",
"standard-fix": "standard --fix",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "npm run standard",
"pre-push": "npm run test"
}
},
"standard": {
"ignore": [
"examples"
]
},
"homepage": "https://github.com/EasyGraphQL/easygraphql-tester",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-tester"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-tester"
},
"license": "MIT",
"dependencies": {
"easygraphql-mock": "^0.1.10",
"easygraphql-parser": "^0.0.6",
"graphql-tag": "^2.9.2",
"lodash.isempty": "^4.4.0",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"husky": "^1.2.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"standard": "^12.0.0"
}
}