spectacle/package.json

61 lines
1.6 KiB
JSON
Raw Normal View History

2016-01-12 13:38:19 +03:00
{
"name": "spectacle-docs",
"version": "0.8.0",
2016-01-18 16:42:27 +03:00
"description": "Generate beautiful static API documentation from OpenAPI/Swagger 2.0 specifications",
"preferGlobal": true,
2016-01-12 13:38:19 +03:00
"bin": {
2016-11-24 19:49:25 +03:00
"spectacle": "bin/spectacle.js"
2016-01-12 13:38:19 +03:00
},
"scripts": {
2016-12-20 02:48:53 +03:00
"build": "spectacle -l test/fixtures/cheese.png test/fixtures/cheese.json",
2016-12-20 02:52:31 +03:00
"test": "node bin/spectacle -l test/fixtures/cheese.png test/fixtures/cheese.json",
2016-12-20 02:48:53 +03:00
"develop": "spectacle -d",
"start": "spectacle -s"
2016-01-12 13:38:19 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcey/spectacle.git"
},
"keywords": [
"openapi",
"swagger",
"docs",
"documentation",
"builder",
"generator"
],
"author": "Kam Low <auscaster@gmail.com> (http://sourcey.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcey/spectacle/issues"
},
"homepage": "https://sourcey.com/spectacle",
2016-01-12 13:38:19 +03:00
"dependencies": {
"bluebird": "^3.4.7",
2016-01-12 13:38:19 +03:00
"cheerio": "^0.19.0",
"clarify": "^1.0.5",
"commander": "*",
"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",
2016-01-12 13:38:19 +03:00
"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",
2016-12-19 22:06:24 +03:00
"grunt-sass": "^2.0.0",
2016-01-12 13:38:19 +03:00
"handlebars": "^4.0.5",
"highlight.js": "^9.1.0",
2016-02-07 09:17:18 +03:00
"lodash": "^4.2.1",
"marked": "^0.3.5",
"tmp": "0.0.31",
2016-01-12 13:38:19 +03:00
"trace": "^1.1.0"
},
"devDependencies": {
"grunt-contrib-jshint": "^1.1.0"
2016-01-12 13:38:19 +03:00
}
}