-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "easygraphql-parser",
"version": "0.0.15",
"description": "Parse GraphQL Schema",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 91 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"
}
},
"keywords": [
"nodejs",
"graphql",
"parser",
"schema"
],
"homepage": "https://github.com/EasyGraphQL/easygraphql-parser",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-parser"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-parser/issues"
},
"license": "MIT",
"dependencies": {
"@graphql-tools/merge": "^6.0.11"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"graphql": "^15.3.0",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"prettier": "^1.18.2"
}
}