-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.05 KB
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
{
"name": "graphqldoc",
"version": "2.5.2",
"description": "Generate GraphQL docs from schema.",
"main": "bin/graphqldoc",
"bin": {
"graphqldoc": "./bin/graphqldoc.js"
},
"scripts": {
"sass": "node-sass --output-style compressed template/slds/styles/graphdoc.scss > template/slds/styles/graphdoc.css",
"compile": "tsc -p .",
"declaration": "tsc -d -p tsconfig.json",
"doc.github": "node bin/graphqldoc.js -c example.github.json -f -v",
"doc.pokemon": "node bin/graphqldoc.js -c example.pokemon.json -f -v",
"doc.shopify": "node bin/graphqldoc.js -c example.shopify.json -f -v",
"doc.starwars": "node bin/graphqldoc.js -c example.starWars.json -f -v",
"doc.starwars-js": "node bin/graphqldoc.js -c example.starWars-js.json -f -v",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeSignal/graphqldoc.git"
},
"keywords": [
"graphql",
"graphdoc",
"graphqldoc",
"docs",
"documentation"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeSignal/graphqldoc/issues"
},
"homepage": "https://github.com/CodeSignal/graphqldoc#readme",
"devDependencies": {
"@salesforce-ux/design-system": "2.8.3",
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.1.7",
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/graphql": "^14.2.1",
"@types/jest": "^24.0.15",
"@types/marked": "^0.6.5",
"@types/mocha": "^5.2.7",
"@types/mustache": "^0.8.28",
"@types/node": "^12.0.8",
"@types/request": "^2.48.1",
"chai": "^4.2.0",
"handlebars": "^4.1.2",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"ts-jest": "^24.0.2",
"typescript": "^3.3.4000"
},
"dependencies": {
"@2fd/command": "^1.1.2",
"bluebird": "^3.5.5",
"deepmerge": "^3.2.1",
"fs-extra": "^8.0.1",
"glob": "^7.1.4",
"graphql": "^14.3.1",
"marked": "^0.6.2",
"mustache": "^3.0.1",
"request": "^2.79.0",
"slug": "^1.1.0",
"striptags": "^3.1.1",
"word-wrap": "^1.2.1"
}
}