redoc/package.json

120 lines
3.8 KiB
JSON
Raw Normal View History

2015-10-03 11:54:09 +03:00
{
2016-01-13 00:35:08 +03:00
"name": "redoc",
2015-11-14 18:46:21 +03:00
"description": "Swagger-generated API Reference Documentation",
2016-05-10 11:29:55 +03:00
"version": "0.9.0",
2016-01-06 18:22:17 +03:00
"repository": {
"type": "git",
"url": "git://github.com/Rebilly/ReDoc"
},
2016-01-25 00:15:04 +03:00
"main": "dist/redoc.min.js",
2015-10-03 11:54:09 +03:00
"scripts": {
2016-01-17 01:36:23 +03:00
"test": "gulp lint && ./build/run_tests.sh",
2016-02-03 19:49:36 +03:00
"jspm-install": "jspm install",
2015-10-27 15:08:38 +03:00
"start": "gulp serve",
2016-01-06 18:22:17 +03:00
"build-dist": "gulp build",
2016-01-18 16:51:21 +03:00
"branch-release": "git reset --hard && branch-release",
2016-01-17 01:36:23 +03:00
"unit": "gulp test",
2016-02-23 12:35:32 +03:00
"e2e": "gulp e2e",
2016-04-30 22:18:11 +03:00
"deploy": "build/prepare_deploy.sh && deploy-to-gh-pages demo"
2015-10-03 11:54:09 +03:00
},
"keywords": [
2016-02-24 19:25:49 +03:00
"OpenAPI",
"OpenAPI Specification",
2015-10-03 11:54:09 +03:00
"Swagger",
"JSON-Schema",
"API",
2016-02-24 19:25:49 +03:00
"REST",
2015-10-03 11:54:09 +03:00
"documentation",
"Angular 2"
],
"author": "Roman Hotsiy",
"license": "MIT",
"jspm": {
"configFile": "system.config.js",
"dependencies": {
2016-05-05 11:05:02 +03:00
"@angular/common": "npm:@angular/common@^2.0.0-rc.1",
"@angular/compiler": "npm:@angular/compiler@^2.0.0-rc.1",
"@angular/core": "npm:@angular/core@^2.0.0-rc.1",
"@angular/platform-browser": "npm:@angular/platform-browser@^2.0.0-rc.1",
"@angular/platform-browser-dynamic": "npm:@angular/platform-browser-dynamic@^2.0.0-rc.1",
2016-04-19 18:50:01 +03:00
"Robdel12/DropKick": "github:Robdel12/DropKick@^2.1.7",
2015-10-03 11:54:09 +03:00
"es6-shim": "github:es-shims/es6-shim@^0.33.6",
"hint.css": "npm:hint.css@^2.2.1",
2016-02-16 16:31:12 +03:00
"json": "github:systemjs/plugin-json@^0.1.0",
2015-10-17 21:03:08 +03:00
"json-formatter-js": "npm:json-formatter-js@^0.2.0",
2015-10-08 20:15:21 +03:00
"json-pointer": "npm:json-pointer@^0.3.0",
"json-schema-instantiator": "npm:json-schema-instantiator@^0.3.0",
2015-10-23 11:35:13 +03:00
"marked": "npm:marked@^0.3.5",
2016-01-31 20:37:10 +03:00
"prismjs": "npm:prismjs@^1.3.0",
2016-05-05 11:05:02 +03:00
"rxjs": "npm:rxjs@5.0.0-beta.6",
"scrollparent": "npm:scrollparent@^0.1.0",
"stream-http": "npm:stream-http@^2.3.0",
2016-05-05 11:05:02 +03:00
"swagger-parser": "npm:swagger-parser@4.0.0-beta.2",
"zone.js": "npm:zone.js@0.6.12"
2015-10-03 11:54:09 +03:00
},
"devDependencies": {
2015-12-19 23:21:17 +03:00
"babel": "npm:babel-core@^5.8.34",
2015-10-03 11:54:09 +03:00
"babel-runtime": "npm:babel-runtime@^5.8.24",
2015-10-17 21:40:04 +03:00
"clean-css": "npm:clean-css@^3.4.6",
2015-12-19 23:21:17 +03:00
"core-js": "npm:core-js@^1.2.6",
2015-10-17 21:03:08 +03:00
"css": "github:systemjs/plugin-css@^0.1.18",
2015-10-17 21:40:04 +03:00
"systemjs/plugin-json": "github:systemjs/plugin-json@^0.1.0"
2016-04-19 18:50:01 +03:00
},
"overrides": {
"github:Robdel12/DropKick@2.1.7": {
"format": "global"
},
"npm:json-schema-ref-parser@3.1.2": {
"map": {
"http": "npm:stream-http@2.3.0"
}
2016-04-19 18:50:01 +03:00
}
2015-10-03 11:54:09 +03:00
}
},
"devDependencies": {
2015-12-19 23:21:17 +03:00
"babel-eslint": "^4.1.6",
2015-12-10 00:46:27 +03:00
"babel-polyfill": "^6.3.14",
2016-03-13 03:23:15 +03:00
"branch-release": "^0.3.2",
2015-12-19 23:21:17 +03:00
"browser-sync": "^2.10.1",
"del": "^2.2.0",
2016-02-23 12:35:32 +03:00
"deploy-to-gh-pages": "^1.0.0",
2016-03-27 19:06:00 +03:00
"gulp": "^3.9.1",
2015-10-14 23:59:39 +03:00
"gulp-concat": "^2.6.0",
2015-12-19 23:21:17 +03:00
"gulp-eslint": "^1.1.1",
2016-03-27 19:06:00 +03:00
"gulp-inline-ng2-template": "^1.1.2",
2016-01-15 23:51:36 +03:00
"gulp-protractor": "^2.1.0",
2016-01-06 18:22:17 +03:00
"gulp-rename": "^1.2.2",
2015-10-14 23:59:39 +03:00
"gulp-replace": "^0.5.4",
2015-12-19 23:21:17 +03:00
"gulp-sass": "^2.1.1",
2015-10-14 23:59:39 +03:00
"gulp-sourcemaps": "^1.6.0",
2015-12-13 13:37:58 +03:00
"isparta": "^4.0.0",
"istanbul": "github:gotwarlost/istanbul#source-map",
"jasmine-core": "^2.4.1",
2016-01-16 00:22:11 +03:00
"jasmine-spec-reporter": "^2.4.0",
2016-05-05 11:05:02 +03:00
"jspm": "^0.16.34",
2015-12-10 00:46:27 +03:00
"karma": "^0.13.15",
2015-12-13 13:37:58 +03:00
"karma-babel-preprocessor": "^5.2.2",
2015-12-10 00:46:27 +03:00
"karma-chrome-launcher": "^0.2.2",
2015-12-13 13:37:58 +03:00
"karma-coverage": "github:douglasduteil/karma-coverage#next",
2015-12-13 13:43:29 +03:00
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^0.3.6",
2015-12-10 00:46:27 +03:00
"karma-jspm": "^2.0.2",
2016-03-27 19:06:00 +03:00
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
2015-12-10 01:08:42 +03:00
"karma-phantomjs-shim": "^1.1.2",
2015-12-19 01:53:33 +03:00
"karma-regex-preprocessor": "github:makern/karma-regex-preprocessor",
"karma-should": "^1.0.0",
2015-12-10 00:46:27 +03:00
"karma-sinon": "^1.0.4",
2016-03-27 19:06:00 +03:00
"phantomjs-prebuilt": "^2.1.7",
2016-01-15 23:34:28 +03:00
"protractor": "^3.0.0",
"reflect-metadata": "^0.1.2",
2015-10-03 11:54:09 +03:00
"require-dir": "^0.3.0",
2015-12-19 23:21:17 +03:00
"run-sequence": "^1.1.5",
"should": "^8.0.2",
"sinon": "^1.17.2",
2016-05-05 11:05:02 +03:00
"systemjs-builder": "^0.15.16",
2015-10-14 23:59:39 +03:00
"vinyl-paths": "^2.0.0",
2016-04-30 00:45:53 +03:00
"zone.js": "^0.6.12"
2015-12-19 01:53:33 +03:00
}
2015-10-03 11:54:09 +03:00
}