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",
|
2017-01-06 15:06:08 +03:00
|
|
|
"version": "1.7.0",
|
2016-01-06 18:22:17 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/Rebilly/ReDoc"
|
|
|
|
},
|
2016-09-28 09:33:56 +03:00
|
|
|
"engines": {
|
|
|
|
"node": ">=4.0.0",
|
|
|
|
"npm": ">=3.0.0"
|
|
|
|
},
|
2016-01-25 00:15:04 +03:00
|
|
|
"main": "dist/redoc.min.js",
|
2015-10-03 11:54:09 +03:00
|
|
|
"scripts": {
|
2016-08-28 21:49:06 +03:00
|
|
|
"test": "npm run lint && node ./build/run_tests.js",
|
2016-01-18 16:51:21 +03:00
|
|
|
"branch-release": "git reset --hard && branch-release",
|
2016-08-28 21:49:06 +03:00
|
|
|
"lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
|
2016-08-28 23:42:04 +03:00
|
|
|
"unit": "npm run build:sass && karma start",
|
2016-08-28 21:49:06 +03:00
|
|
|
"e2e": "npm run build:prod && npm run e2e-copy && npm run webdriver && protractor",
|
2016-08-23 01:17:16 +03:00
|
|
|
"deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo",
|
2016-08-28 21:46:10 +03:00
|
|
|
"ngc": "ngc -p .",
|
2017-01-06 22:38:04 +03:00
|
|
|
"clean:aot": "npm run rimraf -- .tmp lib/**/*.css",
|
|
|
|
"rimraf": "rimraf",
|
|
|
|
"webpack:prod": "npm run clean:aot && npm run build:sass && webpack --config build/webpack.prod.js --profile --bail",
|
2016-08-29 07:43:59 +03:00
|
|
|
"build:sass": "node-sass -q -o lib lib",
|
2017-01-06 22:38:04 +03:00
|
|
|
"build:prod": "npm run webpack:prod",
|
2016-10-14 12:19:53 +03:00
|
|
|
"build:prod-module": "npm run build:sass && npm run ngc && npm run webpack:prod && IS_MODULE=true npm run webpack:prod",
|
2016-08-28 21:46:10 +03:00
|
|
|
"build-dist": "npm run build:prod",
|
|
|
|
"stats": "webpack --config build/webpack.prod.js --json > stats.json",
|
|
|
|
"start": "webpack-dev-server --config build/webpack.dev.js --content-base demo",
|
|
|
|
"e2e-server": "http-server -p 3000 tests/e2e",
|
2016-08-28 21:49:06 +03:00
|
|
|
"e2e-copy": "cp dist/redoc.min.js tests/e2e/",
|
2016-08-30 19:53:06 +03:00
|
|
|
"webdriver": "webdriver-manager update",
|
2016-08-31 21:58:55 +03:00
|
|
|
"serve:prod": "NODE_ENV=production npm start",
|
|
|
|
"protractor": "protractor"
|
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",
|
|
|
|
"devDependencies": {
|
2016-12-22 02:32:34 +03:00
|
|
|
"@angular/common": "^2.4.0",
|
|
|
|
"@angular/compiler": "^2.4.0",
|
|
|
|
"@angular/compiler-cli": "^2.4.0",
|
|
|
|
"@angular/core": "^2.4.0",
|
|
|
|
"@angular/platform-browser": "^2.4.0",
|
|
|
|
"@angular/platform-browser-dynamic": "^2.4.0",
|
|
|
|
"@angular/platform-server": "^2.4.0",
|
2016-08-23 01:17:16 +03:00
|
|
|
"@types/core-js": "^0.9.31",
|
|
|
|
"@types/jasmine": "^2.2.32",
|
2016-08-28 21:46:10 +03:00
|
|
|
"@types/requirejs": "^2.1.26",
|
2016-08-23 01:17:16 +03:00
|
|
|
"@types/should": "^8.1.28",
|
2016-10-31 22:09:55 +03:00
|
|
|
"angular2-template-loader": "^0.6.0",
|
2017-01-06 22:38:04 +03:00
|
|
|
"awesome-typescript-loader": "~3.0.0-beta.17",
|
2016-06-18 21:04:04 +03:00
|
|
|
"branch-release": "^1.0.3",
|
2016-08-28 21:46:10 +03:00
|
|
|
"chalk": "^1.1.3",
|
2016-12-22 02:32:34 +03:00
|
|
|
"codelyzer": "^2.0.0-beta.4",
|
2016-10-14 12:15:32 +03:00
|
|
|
"core-js": "^2.4.1",
|
2016-06-16 16:43:58 +03:00
|
|
|
"coveralls": "^2.11.9",
|
2016-12-02 12:25:54 +03:00
|
|
|
"css-loader": "^0.26.0",
|
2016-05-29 20:47:38 +03:00
|
|
|
"deploy-to-gh-pages": "^1.1.2",
|
2016-08-28 23:09:14 +03:00
|
|
|
"http-server": "^0.9.0",
|
2017-01-06 22:38:04 +03:00
|
|
|
"istanbul-instrumenter-loader": "^1.2.0",
|
2015-12-18 11:34:17 +03:00
|
|
|
"jasmine-core": "^2.4.1",
|
2016-01-16 00:22:11 +03:00
|
|
|
"jasmine-spec-reporter": "^2.4.0",
|
2016-09-02 23:25:03 +03:00
|
|
|
"karma": "^1.2.0",
|
|
|
|
"karma-chrome-launcher": "^2.0.0",
|
2017-01-06 22:38:04 +03:00
|
|
|
"karma-coverage": "^1.1.1",
|
2016-08-28 21:46:10 +03:00
|
|
|
"karma-coveralls": "^1.1.2",
|
2016-06-23 11:34:49 +03:00
|
|
|
"karma-jasmine": "^1.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",
|
2017-01-06 22:38:04 +03:00
|
|
|
"karma-remap-coverage": "^0.1.4",
|
2015-12-18 11:34:17 +03:00
|
|
|
"karma-should": "^1.0.0",
|
2015-12-10 00:46:27 +03:00
|
|
|
"karma-sinon": "^1.0.4",
|
2016-08-28 21:46:10 +03:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2017-01-06 22:38:04 +03:00
|
|
|
"karma-webpack": "^1.8.1 ",
|
|
|
|
"ngc-webpack": "^1.1.0",
|
2016-12-22 02:32:34 +03:00
|
|
|
"node-sass": "^4.1.1",
|
2016-03-27 19:06:00 +03:00
|
|
|
"phantomjs-prebuilt": "^2.1.7",
|
2016-10-31 11:15:15 +03:00
|
|
|
"protractor": "^4.0.10",
|
2016-08-28 21:46:10 +03:00
|
|
|
"raw-loader": "^0.5.1",
|
2017-01-06 22:38:04 +03:00
|
|
|
"rimraf": "^2.5.4",
|
2016-12-22 02:32:34 +03:00
|
|
|
"rxjs": "^5.0.1",
|
2017-01-06 22:38:04 +03:00
|
|
|
"sass-loader": "^4.1.1",
|
2016-05-20 20:51:31 +03:00
|
|
|
"shelljs": "^0.7.0",
|
2016-09-02 23:18:31 +03:00
|
|
|
"should": "^11.1.0",
|
2015-12-19 23:21:17 +03:00
|
|
|
"sinon": "^1.17.2",
|
2016-08-29 07:35:47 +03:00
|
|
|
"source-map-loader": "^0.1.5",
|
2016-10-31 12:03:15 +03:00
|
|
|
"string-replace-webpack-plugin": "0.0.4",
|
2016-08-28 21:46:10 +03:00
|
|
|
"style-loader": "^0.13.1",
|
|
|
|
"ts-helpers": "^1.1.1",
|
2017-01-06 22:38:04 +03:00
|
|
|
"tslint": "^4.2.0",
|
|
|
|
"typescript": "2.0.10",
|
|
|
|
"v8-lazy-parse-webpack-plugin": "^0.3.0",
|
|
|
|
"webpack": "2.2.0-rc.3",
|
|
|
|
"webpack-dev-server": "^2.2.0-rc.0",
|
|
|
|
"webpack-merge": "^2.3.1",
|
2016-12-19 23:58:39 +03:00
|
|
|
"zone.js": "^0.7.2"
|
2016-08-28 21:46:10 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-08-28 23:48:20 +03:00
|
|
|
"dropkickjs": "^2.1.10",
|
2016-08-28 21:46:10 +03:00
|
|
|
"hint.css": "^2.3.2",
|
2016-11-01 17:58:48 +03:00
|
|
|
"json-pointer": "^0.6.0",
|
2016-08-28 21:49:06 +03:00
|
|
|
"json-schema-ref-parser": "^3.1.2",
|
2016-11-08 11:03:15 +03:00
|
|
|
"openapi-sampler": "^0.3.3",
|
2016-08-28 21:49:06 +03:00
|
|
|
"prismjs": "^1.5.1",
|
|
|
|
"remarkable": "^1.6.2",
|
|
|
|
"scrollparent": "^1.0.0",
|
2016-09-02 23:18:31 +03:00
|
|
|
"slugify": "^1.0.2",
|
2016-12-20 01:32:29 +03:00
|
|
|
"stream-http": "^2.5.0"
|
2016-10-14 11:44:48 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2016-12-22 02:32:34 +03:00
|
|
|
"@angular/common": "^2.4.0",
|
|
|
|
"@angular/compiler": "^2.4.0",
|
|
|
|
"@angular/core": "^2.4.0",
|
|
|
|
"@angular/platform-browser": "^2.4.0",
|
|
|
|
"@angular/platform-browser-dynamic": "^2.4.0",
|
|
|
|
"@angular/platform-server": "^2.4.0",
|
2016-10-14 11:44:48 +03:00
|
|
|
"core-js": "^2.4.1",
|
2016-12-22 02:32:34 +03:00
|
|
|
"rxjs": "^5.0.1",
|
2016-12-19 23:58:39 +03:00
|
|
|
"zone.js": "^0.7.2"
|
2015-12-19 01:53:33 +03:00
|
|
|
}
|
2015-10-03 11:54:09 +03:00
|
|
|
}
|