-
Notifications
You must be signed in to change notification settings - Fork 337
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "spectacle-docs",
"version": "1.1.0",
"description": "Generate beautiful static API documentation from OpenAPI/Swagger 2.0 specifications",
"preferGlobal": true,
"bin": {
"spectacle": "bin/spectacle.js"
},
"scripts": {
"build": "node bin/spectacle -l test/fixtures/cheese.png test/fixtures/cheese.yml",
"test": "mocha && node bin/spectacle -l test/fixtures/cheese.png test/fixtures/cheese.yml",
"develop": "spectacle -d",
"start": "spectacle -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcey/spectacle.git"
},
"engines": {
"node": ">=8"
},
"keywords": [
"openapi",
"swagger",
"docs",
"documentation",
"builder",
"generator"
],
"author": "Kam Low <auscaster@gmail.com> (https://sourcey.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcey/spectacle/issues"
},
"homepage": "https://sourcey.com/spectacle",
"dependencies": {
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.10",
"clarify": "^2.1.0",
"coffeescript": "^2.5.1",
"commander": "*",
"foundation-sites": "^6.6.3",
"grunt": "^1.4.1",
"grunt-compile-handlebars": "^2.0.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-handlebars": "^3.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-embed": "^0.2.1",
"grunt-prettify": "^0.4.0",
"grunt-sass": "^3.1.0",
"handlebars": "^4.7.7",
"highlight.js": "^11.0.1",
"js-yaml": "^4.1.0",
"json-refs": "^3.0.15",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"marked": "^2.1.3",
"node-sass": "^6.0.1",
"sync-request": "^6.1.0",
"tmp": "^0.2.1",
"trace": "^3.1.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.0.2"
}
}