chore: smooth the protractor process; shuffle scripts in package.json
Showing
| { | { | ||
| "name": "angular2-quickstart", | "name": "angular2-quickstart", | ||
| "version": "1.0.0", | "version": "1.0.0", | ||
| "description": "QuickStart package.json from the documentation, supplemented with testing support", | |||
| "scripts": { | "scripts": { | ||
| "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ", | "start": "tsc && concurrently \"tsc -w\" \"lite-server\" ", | ||
| "build-and-test": "npm run tsc && npm run test", | |||
| "docker-build": "docker build -t ng2-quickstart .", | "docker-build": "docker build -t ng2-quickstart .", | ||
| "docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart", | "docker": "npm run docker-build && docker run -it --rm -p 3000:3000 -p 3001:3001 ng2-quickstart", | ||
| "e2e": "tsc && concurrently \"http-server\" \"protractor protractor.config.js\"", | "e2e": "tsc && concurrently \"http-server\" \"protractor protractor.config.js\"", | ||
| "tsc": "tsc", | |||
| "tsc:w": "tsc -w", | |||
| "lite": "lite-server", | "lite": "lite-server", | ||
| "postinstall": "typings install", | |||
| "test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"", | "test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"", | ||
| "tsc": "tsc", | |||
| "tsc:w": "tsc -w", | |||
| "typings": "typings", | "typings": "typings", | ||
| "webdriver:update": "webdriver-manager update", | "webdriver:update": "webdriver-manager update" | ||
| "postinstall": "typings install" | |||
| }, | }, | ||
| "keywords": [], | |||
| "author": "", | |||
| "license": "ISC", | "license": "ISC", | ||
| "dependencies": { | "dependencies": { | ||
| "angular2": "2.0.0-beta.15", | "angular2": "2.0.0-beta.15", | ||
| "a2-in-memory-web-api": "^0.1.15", | |||
| "systemjs": "0.19.26", | "systemjs": "0.19.26", | ||
| "es6-shim": "^0.35.0", | "es6-shim": "^0.35.0", | ||
| "reflect-metadata": "0.1.2", | "reflect-metadata": "0.1.2", | ||
| "rxjs": "5.0.0-beta.2", | "rxjs": "5.0.0-beta.2", | ||
| "zone.js": "0.6.10" | "zone.js": "0.6.10", | ||
| "a2-in-memory-web-api": "^0.1.15" | |||
| }, | }, | ||
| "devDependencies": { | "devDependencies": { | ||
| "canonical-path": "0.0.2", | "canonical-path": "0.0.2", | ||
| ... | @@ -41,5 +43,6 @@ | ... | @@ -41,5 +43,6 @@ |
| "rimraf": "^2.5.2", | "rimraf": "^2.5.2", | ||
| "typescript": "^1.8.10", | "typescript": "^1.8.10", | ||
| "typings":"^0.7.12" | "typings":"^0.7.12" | ||
| } | }, | ||
| "repository": { } | |||
| } | } |
Please register or sign in to comment