forked from exogen/graphql-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.55 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
62
63
64
{
"name": "graphql-markdown",
"version": "6.0.0",
"description": "Generate documentation for your GraphQL schema in Markdown",
"main": "src/index.js",
"bin": "src/index.js",
"repository": "git@github.com:exogen/graphql-markdown.git",
"author": "Brian Beck <exogen@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.10.0"
},
"files": [
"src",
"yarn.lock"
],
"scripts": {
"coverage": "cat coverage/lcov.info | coveralls",
"format": "npm run lint:fix || true",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run lint && npm run test:coverage",
"test:coverage": "jest --coverage",
"test:only": "jest"
},
"husky": {
"hooks": {
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"peerDependencies": {
"graphql": "^14.0.2 || ^15.0.0"
},
"dependencies": {
"deep-diff": "^1.0.2",
"lodash.isplainobject": "^4.0.6",
"minimist": "^1.2.0",
"node-fetch": "^2.2.0",
"resolve-from": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"graphbrainz": "^8.1.0",
"graphql": "^14.0.2",
"husky": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"tempy": "^0.2.1"
}
}