-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
61 lines (61 loc) · 1.57 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
56
57
58
59
60
61
{
"name": "graphql-markdown",
"version": "7.3.0",
"description": "Generate documentation for your GraphQL schema in Markdown",
"main": "src/index.js",
"bin": "src/index.js",
"repository": "[email protected]:exogen/graphql-markdown.git",
"author": "Brian Beck <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"files": [
"src",
"yarn.lock"
],
"scripts": {
"coverage": "cat coverage/lcov.info | coveralls",
"format": "npm run lint:fix || true",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install",
"test": "npm run lint && npm run test:coverage",
"test:coverage": "jest --coverage",
"test:only": "jest"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"peerDependencies": {
"graphql": "^14.0.2 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"deep-diff": "^1.0.2",
"lodash.isplainobject": "^4.0.6",
"minimist": "^1.2.6",
"node-fetch": "^2.0.0",
"resolve-from": "^5.0.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-standard": "^5.0.0",
"graphbrainz": "^8.0.0",
"graphql": "^16.0.0",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tempy": "^1.0.0"
}
}