forked from EasyGraphQL/easygraphql-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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": "6.0.2",
"description": "Test GraphQL schema, queries and mutations",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 98 mocha",
"prettier:check": "prettier --write './{lib,test,utils}/**/*.{js,graphql}'",
"prettier:format": "prettier --write './{lib,test,utils}/**/*.{js,graphql}'",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && git add .",
"pre-push": "npm run test"
}
},
"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": {
"@graphql-tools/merge": "^8.3.6",
"@graphql-tools/schema": "^8.5.0",
"easygraphql-mock": "^0.1.17",
"easygraphql-parser": "^0.0.15",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"graphql": "^16.5.0",
"graphql-tag": "^2.11.0",
"husky": "^3.1.0",
"mocha": "^6.2.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
}