forked from graphql-markdown/graphql-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@edno/docusaurus2-graphql-doc-generator",
"homepage": "https://edno.github.io/graphql-markdown",
"description": "Docusaurus 2 plugin for generating Markdown documentation from a GraphQL schema.",
"bugs": {
"url": "https://github.com/edno/graphql-markdown/issues"
},
"version": "1.7.0",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/edno/graphql-markdown.git"
},
"keywords": [
"docusaurus",
"graphql",
"graphql-schema",
"documentation",
"plugin",
"markdown"
],
"author": "Gregory Heitz",
"scripts": {
"prettier": "prettier \"{src,tests,assets}/**/*.{js,json,md}\"",
"lint": "eslint \"{src,tests,assets}/**/*.js\"",
"test": "jest",
"test:unit": "jest --projects tests/unit",
"test:integration": "jest --projects tests/integration",
"test:smoke": "earthly +smoke-test",
"test:coverage": "sh ./scripts/coverage.sh",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@graphql-inspector/core": "^3.0.1",
"@graphql-tools/graphql-file-loader": "^7.1.0",
"@graphql-tools/load": "^7.3.2",
"picocolors": "^1.0.0",
"prettier": "^2.4.1"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@stryker-mutator/core": "^5.4.1",
"@stryker-mutator/jest-runner": "^5.4.1",
"diff": "^5.0.0",
"directory-tree": "^3.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^15.6.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"jest-file-snapshot": "^0.5.0",
"lodash.filter": "^4.6.0",
"mock-fs": "^5.1.1",
"pinst": "^2.1.6"
},
"prettier": {
"singleQuote": false,
"bracketSpacing": true,
"proseWrap": "preserve",
"overrides": [
{
"files": "*.js",
"options": {
"arrowParens": "always",
"printWidth": 80,
"trailingComma": "all",
"tabWidth": 2
}
}
]
},
"directories": {
"test": "tests"
},
"engineStrict": true,
"engines": {
"node": ">=14.14.0"
}
}