-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "easygraphql-mock",
"version": "0.1.17",
"description": "Create mocks of your GraphQL Schema",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 90 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": [
"/example/node_modules"
]
},
"keywords": [
"nodejs",
"graphql",
"mock",
"schema"
],
"homepage": "https://github.com/EasyGraphQL/easygraphql-mock",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-mock"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-mock/issues"
},
"license": "MIT",
"dependencies": {
"chance": "^1.0.16",
"easygraphql-parser": "^0.0.15"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"graphql": "^15.3.0",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"standard": "^12.0.1"
}
}