spectacle/package.json

74 lines
2.0 KiB
JSON
Raw Normal View History

2016-01-12 13:38:19 +03:00
{
"name": "spectacle-docs",
2020-03-10 05:56:55 +03:00
"version": "1.1.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": {
"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",
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"
},
2018-03-20 12:35:54 +03:00
"engines": {
"node": ">=8"
},
2016-01-12 13:38:19 +03:00
"keywords": [
"openapi",
"swagger",
"docs",
"documentation",
"builder",
"generator"
],
"author": "Kam Low <auscaster@gmail.com> (https://sourcey.com)",
2016-01-12 13:38:19 +03:00
"license": "MIT",
"bugs": {
"url": "https://github.com/sourcey/spectacle/issues"
},
"homepage": "https://sourcey.com/spectacle",
2016-01-12 13:38:19 +03:00
"dependencies": {
2021-07-07 03:23:28 +03:00
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.10",
"clarify": "^2.1.0",
2021-07-07 03:23:28 +03:00
"coffeescript": "^2.5.1",
2016-01-12 13:38:19 +03:00
"commander": "*",
2021-07-07 03:23:28 +03:00
"foundation-sites": "^6.6.3",
"grunt": "^1.4.1",
2020-05-20 00:07:57 +03:00
"grunt-compile-handlebars": "^2.0.2",
"grunt-contrib-clean": "^2.0.0",
2018-07-02 03:25:14 +03:00
"grunt-contrib-concat": "^1.0.1",
2021-07-07 03:23:28 +03:00
"grunt-contrib-connect": "^3.0.0",
2018-07-02 03:25:14 +03:00
"grunt-contrib-copy": "^1.0.0",
2021-07-07 03:23:28 +03:00
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-handlebars": "^3.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-uglify": "^5.0.1",
2018-07-02 03:25:14 +03:00
"grunt-contrib-watch": "^1.1.0",
2018-04-12 21:40:50 +03:00
"grunt-embed": "^0.2.1",
"grunt-prettify": "^0.4.0",
2021-07-07 03:23:28 +03:00
"grunt-sass": "^3.1.0",
"handlebars": "^4.7.7",
"highlight.js": "^11.0.1",
"js-yaml": "^4.1.0",
"json-refs": "^3.0.15",
2016-02-07 09:17:18 +03:00
"json-stable-stringify": "^1.0.1",
2021-07-07 03:23:28 +03:00
"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": {
2021-07-07 03:23:28 +03:00
"chai": "^4.3.4",
"mocha": "^9.0.2"
2016-01-12 13:38:19 +03:00
}
}