2017-01-25 06:04:30 -05:00
|
|
|
{
|
|
|
|
"name": "angular.io",
|
|
|
|
"version": "0.0.0",
|
2017-01-25 12:39:01 -05:00
|
|
|
"main": "index.js",
|
|
|
|
"repository": "git@github.com:angular/angular.git",
|
|
|
|
"author": "Angular",
|
2017-01-25 06:04:30 -05:00
|
|
|
"license": "MIT",
|
2017-01-27 03:20:51 -05:00
|
|
|
"scripts": {
|
2017-03-03 06:18:15 -05:00
|
|
|
"ng": "yarn check-env && ng",
|
|
|
|
"start": "yarn check-env && ng serve",
|
|
|
|
"build": "yarn check-env && yarn docs && ng build -prod -sm",
|
2017-04-01 14:34:10 -04:00
|
|
|
"lint": "yarn check-env && yarn docs-lint && ng lint",
|
2017-03-14 15:59:58 -04:00
|
|
|
"test": "yarn check-env && ng test --sourcemap=false",
|
2017-03-13 06:48:04 -04:00
|
|
|
"pree2e": "yarn ~~update-webdriver",
|
2017-03-03 06:18:15 -05:00
|
|
|
"e2e": "yarn check-env && ng e2e --no-webdriver-update",
|
2017-03-31 19:24:25 -04:00
|
|
|
"pretest-pwa-score-local": "yarn build",
|
|
|
|
"test-pwa-score-local": "concurrently --kill-others --success first \"http-server dist -p 4200 --silent\" \"yarn test-pwa-score -- http://localhost:4200 90\"",
|
|
|
|
"test-pwa-score": "node scripts/test-pwa-score",
|
2017-02-06 13:40:28 -05:00
|
|
|
"deploy-preview": "scripts/deploy-preview.sh",
|
2017-04-01 08:09:39 -04:00
|
|
|
"deploy-staging": "scripts/deploy-staging.sh",
|
2017-03-03 06:18:15 -05:00
|
|
|
"check-env": "node ../tools/check-environment.js",
|
2017-03-23 13:23:09 -04:00
|
|
|
"predocs": "rimraf src/content",
|
2017-04-16 16:31:21 -04:00
|
|
|
"docs": "dgeni ./tools/transforms/angular.io-package",
|
|
|
|
"docs-watch": "node tools/transforms/authors-package/watchr.js",
|
|
|
|
"docs-lint": "eslint --ignore-path=\"tools/transforms/.eslintignore\" tools/transforms",
|
|
|
|
"docs-test": "node ../dist/tools/cjs-jasmine/index-tools ../../tools/transforms/**/*.spec.js",
|
2017-03-13 06:48:04 -04:00
|
|
|
"~~update-webdriver": "webdriver-manager update --standalone false --gecko false",
|
2017-04-02 10:53:41 -04:00
|
|
|
"boilerplate:add": "node ./tools/examples/add-example-boilerplate add",
|
2017-03-28 13:29:47 -04:00
|
|
|
"boilerplate:remove": "node ./tools/examples/add-example-boilerplate remove",
|
|
|
|
"generate-plunkers": "node ./tools/plunker-builder/generatePlunkers"
|
2017-01-27 03:20:51 -05:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2017-03-02 15:39:19 -05:00
|
|
|
"@angular/animations": "next",
|
|
|
|
"@angular/common": "next",
|
|
|
|
"@angular/compiler": "next",
|
|
|
|
"@angular/core": "next",
|
|
|
|
"@angular/forms": "next",
|
|
|
|
"@angular/http": "next",
|
2017-04-12 15:25:11 -04:00
|
|
|
"@angular/material": "^2.0.0-beta.3",
|
2017-03-02 15:39:19 -05:00
|
|
|
"@angular/platform-browser": "next",
|
|
|
|
"@angular/platform-browser-dynamic": "next",
|
|
|
|
"@angular/platform-server": "next",
|
|
|
|
"@angular/router": "next",
|
2017-03-24 10:20:23 -04:00
|
|
|
"@angular/service-worker": "^1.0.0-beta.8",
|
2017-01-27 03:20:51 -05:00
|
|
|
"core-js": "^2.4.1",
|
2017-03-21 11:31:46 -04:00
|
|
|
"rxjs": "^5.2.0",
|
2017-03-21 00:29:48 -04:00
|
|
|
"zone.js": "^0.8.4"
|
2017-01-27 03:20:51 -05:00
|
|
|
},
|
2017-01-25 06:04:30 -05:00
|
|
|
"devDependencies": {
|
2017-03-24 10:15:44 -04:00
|
|
|
"@angular/cli": "^1.0.0",
|
2017-03-02 15:39:19 -05:00
|
|
|
"@angular/compiler-cli": "next",
|
2017-01-27 03:20:51 -05:00
|
|
|
"@types/jasmine": "2.5.38",
|
2017-02-20 22:05:40 -05:00
|
|
|
"@types/node": "~6.0.60",
|
2017-02-09 14:58:36 -05:00
|
|
|
"canonical-path": "^0.0.2",
|
2017-03-27 12:13:50 -04:00
|
|
|
"codelyzer": "~2.0.0",
|
2017-03-31 19:24:25 -04:00
|
|
|
"concurrently": "^3.4.0",
|
2017-02-22 14:27:09 -05:00
|
|
|
"dgeni": "^0.4.7",
|
2017-03-17 12:48:59 -04:00
|
|
|
"dgeni-packages": "0.17.0",
|
2017-02-09 14:58:36 -05:00
|
|
|
"entities": "^1.1.1",
|
2017-04-01 14:34:10 -04:00
|
|
|
"eslint": "^3.19.0",
|
|
|
|
"eslint-plugin-jasmine": "^2.2.0",
|
2017-01-25 12:39:01 -05:00
|
|
|
"firebase-tools": "^3.2.1",
|
2017-03-15 17:41:15 -04:00
|
|
|
"fs-extra": "^2.1.1",
|
|
|
|
"globby": "^6.1.0",
|
2017-04-01 14:32:48 -04:00
|
|
|
"html": "^1.0.0",
|
2017-03-31 19:24:25 -04:00
|
|
|
"http-server": "^0.9.0",
|
2017-02-20 22:05:40 -05:00
|
|
|
"jasmine-core": "~2.5.2",
|
|
|
|
"jasmine-spec-reporter": "~3.2.0",
|
2017-03-28 13:29:47 -04:00
|
|
|
"jsdom": "^9.12.0",
|
2017-02-20 22:05:40 -05:00
|
|
|
"karma": "~1.4.1",
|
|
|
|
"karma-chrome-launcher": "~2.0.0",
|
|
|
|
"karma-cli": "~1.0.1",
|
|
|
|
"karma-coverage-istanbul-reporter": "^0.2.0",
|
|
|
|
"karma-jasmine": "~1.1.0",
|
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
2017-03-31 19:24:25 -04:00
|
|
|
"lighthouse": "^1.6.3",
|
2017-02-09 14:58:36 -05:00
|
|
|
"lodash": "^4.17.4",
|
2017-02-20 22:05:40 -05:00
|
|
|
"protractor": "~5.1.0",
|
2017-04-11 13:24:08 -04:00
|
|
|
"remark": "^7.0.0",
|
|
|
|
"remark-html": "^6.0.0",
|
2017-03-28 11:22:44 -04:00
|
|
|
"rho": "https://github.com/petebacondarwin/rho#master",
|
2017-03-23 13:23:09 -04:00
|
|
|
"rimraf": "^2.6.1",
|
2017-03-15 17:41:15 -04:00
|
|
|
"shelljs": "^0.7.7",
|
2017-02-20 22:05:40 -05:00
|
|
|
"ts-node": "~2.0.0",
|
2017-03-27 12:13:50 -04:00
|
|
|
"tslint": "~4.5.0",
|
2017-04-01 14:32:48 -04:00
|
|
|
"typescript": "2.2.0",
|
2017-04-16 15:48:22 -04:00
|
|
|
"vrsource-tslint-rules": "^4.0.1",
|
|
|
|
"watchr": "^3.0.1"
|
2017-01-25 06:04:30 -05:00
|
|
|
}
|
|
|
|
}
|