forked from EasyGraphQL/easygraphql-load-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "easygraphql-load-tester",
"version": "0.3.8",
"description": "Create GrapgQL queries to use with test loaders.",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 90 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"
},
"standard": {
"ignore": [
"examples"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && git add .",
"pre-push": "npm run test"
}
},
"homepage": "https://github.com/EasyGraphQL/easygraphql-load-tester",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-load-tester"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-load-tester"
},
"license": "MIT",
"dependencies": {
"easygraphql-parser": "^0.0.13",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"graphql": "^14.5.4",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
}
}