clean package.json

This commit is contained in:
Roman Hotsiy 2016-08-28 21:49:06 +03:00
parent a65ecfa442
commit 798869944f
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -8,11 +8,11 @@
}, },
"main": "dist/redoc.min.js", "main": "dist/redoc.min.js",
"scripts": { "scripts": {
"test": "npm run unit && npm run e2e", "test": "npm run lint && node ./build/run_tests.js",
"branch-release": "git reset --hard && branch-release", "branch-release": "git reset --hard && branch-release",
"lint": "tslint -e \"lib/**/*+(ngfactory|css.shim).ts\" \"lib/**/*.ts\"", "lint": "tslint -e \"lib/**/*{ngfactory|css.shim}.ts\" lib/**/*.ts",
"unit": "karma start", "unit": "karma start",
"e2e": "npm run build:prod && npm run e2e-copy && protractor", "e2e": "npm run build:prod && npm run e2e-copy && npm run webdriver && protractor",
"deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo", "deploy": "node ./build/prepare_deploy.js && deploy-to-gh-pages --update demo",
"ngc": "ngc -p .", "ngc": "ngc -p .",
"webpack:prod": "webpack --config build/webpack.prod.js --progress --profile --bail", "webpack:prod": "webpack --config build/webpack.prod.js --progress --profile --bail",
@ -22,7 +22,8 @@
"stats": "webpack --config build/webpack.prod.js --json > stats.json", "stats": "webpack --config build/webpack.prod.js --json > stats.json",
"start": "webpack-dev-server --config build/webpack.dev.js --content-base demo", "start": "webpack-dev-server --config build/webpack.dev.js --content-base demo",
"e2e-server": "http-server -p 3000 tests/e2e", "e2e-server": "http-server -p 3000 tests/e2e",
"e2e-copy": "cp dist/redoc.min.js tests/e2e/" "e2e-copy": "cp dist/redoc.min.js tests/e2e/",
"webdriver": "webdriver-manager update"
}, },
"keywords": [ "keywords": [
"OpenAPI", "OpenAPI",
@ -49,17 +50,7 @@
"copy-webpack-plugin": "^3.0.1", "copy-webpack-plugin": "^3.0.1",
"coveralls": "^2.11.9", "coveralls": "^2.11.9",
"css-loader": "^0.24.0", "css-loader": "^0.24.0",
"del": "^2.2.0",
"deploy-to-gh-pages": "^1.1.2", "deploy-to-gh-pages": "^1.1.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-if": "^2.0.1",
"gulp-inline-ng2-template": "^2.0.4",
"gulp-protractor": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.1.1",
"gulp-sourcemaps": "^1.6.0",
"jasmine-core": "^2.4.1", "jasmine-core": "^2.4.1",
"jasmine-spec-reporter": "^2.4.0", "jasmine-spec-reporter": "^2.4.0",
"karma": "^0.13.15", "karma": "^0.13.15",
@ -75,30 +66,17 @@
"karma-sourcemap-loader": "^0.3.7", "karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0", "karma-webpack": "^1.8.0",
"node-sass": "^3.8.0", "node-sass": "^3.8.0",
"openapi-sampler": "^0.2.0",
"phantomjs-prebuilt": "^2.1.7", "phantomjs-prebuilt": "^2.1.7",
"prismjs": "^1.5.1",
"protractor": "^3.3.0", "protractor": "^3.3.0",
"raw-loader": "^0.5.1", "raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.2",
"remap-istanbul": "^0.6.4",
"remarkable": "^1.6.2",
"require-dir": "^0.3.0",
"rollup-plugin-commonjs": "^3.3.1",
"run-sequence": "^1.1.5",
"rxjs": "5.0.0-beta.6",
"scrollparent": "^1.0.0",
"shelljs": "^0.7.0", "shelljs": "^0.7.0",
"should": "^9.0.2", "should": "^9.0.2",
"sinon": "^1.17.2", "sinon": "^1.17.2",
"slugify": "^0.1.1",
"style-loader": "^0.13.1", "style-loader": "^0.13.1",
"systemjs-builder": "0.15.16",
"ts-helpers": "^1.1.1", "ts-helpers": "^1.1.1",
"tslint": "^3.15.0-dev.0", "tslint": "^3.15.0-dev.0",
"tslint-stylish": "^2.1.0-beta", "tslint-stylish": "^2.1.0-beta",
"typescript": "^2.0.0", "typescript": "^2.0.0",
"vinyl-paths": "^2.0.0",
"webpack": "^2.1.0-beta.21", "webpack": "^2.1.0-beta.21",
"yargs": "^4.7.1" "yargs": "^4.7.1"
}, },
@ -114,6 +92,12 @@
"zone.js": "^0.6.15", "zone.js": "^0.6.15",
"hint.css": "^2.3.2", "hint.css": "^2.3.2",
"json-pointer": "^0.5.0", "json-pointer": "^0.5.0",
"json-schema-ref-parser": "^3.1.2" "json-schema-ref-parser": "^3.1.2",
"openapi-sampler": "^0.2.0",
"prismjs": "^1.5.1",
"remarkable": "^1.6.2",
"rxjs": "5.0.0-beta.6",
"scrollparent": "^1.0.0",
"slugify": "^0.1.1"
} }
} }