forked from sourcey/spectacle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "spectacle-docs",
"version": "0.9.13",
"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"
},
"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.4.7",
"cheerio": "^0.19.0",
"clarify": "^1.0.5",
"commander": "*",
"foundation-sites": "^6.4.1",
"grunt": "^0.4.5",
"grunt-compile-handlebars": "^2.0.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-handlebars": "^0.11.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-prettify": "^0.4.0",
"grunt-sass": "*",
"handlebars": "^4.0.5",
"highlight.js": "^9.1.0",
"js-yaml": "^3.8.2",
"json-refs": "^2.1.6",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.2.1",
"marked": "^0.3.5",
"sync-request": "^4.1.0",
"tmp": "0.0.31",
"trace": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"grunt-contrib-jshint": "^1.1.0"
}
}