2017-01-25 11:04:30 +00:00
|
|
|
{
|
|
|
|
|
"name": "angular.io",
|
|
|
|
|
"version": "0.0.0",
|
2017-01-25 17:39:01 +00:00
|
|
|
"main": "index.js",
|
|
|
|
|
"repository": "git@github.com:angular/angular.git",
|
|
|
|
|
"author": "Angular",
|
2017-01-25 11:04:30 +00:00
|
|
|
"license": "MIT",
|
2017-01-27 08:20:51 +00:00
|
|
|
"scripts": {
|
2017-03-03 11:18:15 +00:00
|
|
|
"ng": "yarn check-env && ng",
|
|
|
|
|
"start": "yarn check-env && ng serve",
|
2017-06-12 22:51:39 +00:00
|
|
|
"prebuild": "yarn check-env && yarn setup",
|
2017-08-11 14:26:05 +00:00
|
|
|
"build": "ng build --target=production --environment=stable -sm --build-optimizer",
|
2017-06-12 22:51:39 +00:00
|
|
|
"postbuild": "yarn sw-manifest && yarn sw-copy",
|
2017-05-03 17:31:02 +00:00
|
|
|
"lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint",
|
2017-04-21 19:20:02 +00:00
|
|
|
"test": "yarn check-env && ng test",
|
2017-06-14 15:34:13 +00:00
|
|
|
"pree2e": "yarn check-env && yarn ~~update-webdriver",
|
|
|
|
|
"e2e": "ng e2e --no-webdriver-update",
|
2017-06-23 18:07:58 +00:00
|
|
|
"setup": "yarn && yarn build-ie-polyfills && yarn boilerplate:remove && yarn boilerplate:add && yarn generate-plunkers && yarn generate-zips && yarn docs",
|
2017-03-31 23:24:25 +00: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-04-13 21:35:13 +00:00
|
|
|
"example-e2e": "node ./tools/examples/run-example-e2e",
|
2017-05-03 17:31:02 +00:00
|
|
|
"example-lint": "tslint -c \"content/examples/tslint.json\" \"content/examples/**/*.ts\" -e \"content/examples/styleguide/**/*.avoid.ts\"",
|
2017-06-15 18:26:25 +00:00
|
|
|
"deploy-preview": "scripts/deploy-preview.sh",
|
2017-07-27 15:12:04 +00:00
|
|
|
"deploy-production": "scripts/deploy-to-firebase.sh",
|
2017-06-14 15:34:13 +00:00
|
|
|
"check-env": "node scripts/check-environment",
|
2017-05-24 00:20:56 +00:00
|
|
|
"payload-size": "scripts/payload.sh",
|
2017-05-03 12:55:00 +00:00
|
|
|
"predocs": "rimraf src/generated/{docs,*.json}",
|
2017-04-16 20:31:21 +00: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",
|
2017-06-21 13:18:26 +00:00
|
|
|
"docs-test": "node tools/transforms/test.js",
|
2017-07-28 10:57:44 +00:00
|
|
|
"tools-test": "./scripts/deploy-to-firebase.test.sh && yarn docs-test",
|
2017-07-06 18:51:58 +00:00
|
|
|
"serve-and-sync": "concurrently --kill-others \"yarn docs-watch\" \"yarn start\"",
|
2017-03-13 10:48:04 +00:00
|
|
|
"~~update-webdriver": "webdriver-manager update --standalone false --gecko false",
|
2017-07-27 07:29:17 +00:00
|
|
|
"boilerplate:add": "node ./tools/examples/example-boilerplate add",
|
|
|
|
|
"boilerplate:remove": "node ./tools/examples/example-boilerplate remove",
|
|
|
|
|
"boilerplate:test": "node tools/examples/test.js",
|
2017-04-16 21:40:47 +00:00
|
|
|
"generate-plunkers": "node ./tools/plunker-builder/generatePlunkers",
|
2017-05-11 20:21:27 +00:00
|
|
|
"generate-zips": "node ./tools/example-zipper/generateZips",
|
|
|
|
|
"sw-manifest": "ngu-sw-manifest --dist dist --in ngsw-manifest.json --out dist/ngsw-manifest.json",
|
2017-05-12 20:58:11 +00:00
|
|
|
"sw-copy": "cp node_modules/@angular/service-worker/bundles/worker-basic.min.js dist/",
|
2017-08-02 22:37:03 +00:00
|
|
|
"postinstall": "uglifyjs node_modules/lunr/lunr.js -c -m -o src/assets/js/lunr.min.js --source-map",
|
2017-06-09 22:46:43 +00:00
|
|
|
"build-ie-polyfills": "node node_modules/webpack/bin/webpack.js -p src/ie-polyfills.js src/generated/ie-polyfills.min.js"
|
2017-01-27 08:20:51 +00:00
|
|
|
},
|
2017-06-14 15:34:13 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=6.9.5 <7.0.0",
|
|
|
|
|
"yarn": ">=0.21.3 <1.0.0"
|
|
|
|
|
},
|
2017-01-27 08:20:51 +00:00
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2017-08-11 15:11:55 +00:00
|
|
|
"@angular/animations": "^5.0.0-beta.3",
|
2017-07-26 14:02:40 +00:00
|
|
|
"@angular/cdk": "^2.0.0-beta.8",
|
2017-08-11 15:11:55 +00:00
|
|
|
"@angular/common": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/compiler": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/core": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/forms": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/http": "^5.0.0-beta.3",
|
2017-07-26 14:02:40 +00:00
|
|
|
"@angular/material": "^2.0.0-beta.8",
|
2017-08-11 15:11:55 +00:00
|
|
|
"@angular/platform-browser": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/platform-browser-dynamic": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/platform-server": "^5.0.0-beta.3",
|
|
|
|
|
"@angular/router": "^5.0.0-beta.3",
|
2017-06-16 17:57:01 +00:00
|
|
|
"@angular/service-worker": "^1.0.0-beta.16",
|
2017-05-15 20:22:06 +00:00
|
|
|
"classlist.js": "^1.1.20150312",
|
2017-01-27 08:20:51 +00:00
|
|
|
"core-js": "^2.4.1",
|
2017-06-13 07:46:46 +00:00
|
|
|
"jasmine": "^2.6.0",
|
2017-05-11 20:21:27 +00:00
|
|
|
"ng-pwa-tools": "^0.0.10",
|
2017-03-21 15:31:46 +00:00
|
|
|
"rxjs": "^5.2.0",
|
2017-05-24 23:40:44 +00:00
|
|
|
"tslib": "^1.7.1",
|
2017-05-15 20:22:06 +00:00
|
|
|
"web-animations-js": "^2.2.5",
|
2017-08-11 15:36:03 +00:00
|
|
|
"zone.js": "^0.8.16"
|
2017-01-27 08:20:51 +00:00
|
|
|
},
|
2017-01-25 11:04:30 +00:00
|
|
|
"devDependencies": {
|
2017-08-11 14:26:05 +00:00
|
|
|
"@angular/cli": "^1.3.0",
|
2017-08-11 15:11:55 +00:00
|
|
|
"@angular/compiler-cli": "^5.0.0-beta.3",
|
2017-06-18 08:31:30 +00:00
|
|
|
"@types/jasmine": "^2.5.52",
|
2017-02-21 03:05:40 +00:00
|
|
|
"@types/node": "~6.0.60",
|
2017-04-16 21:40:47 +00:00
|
|
|
"archiver": "^1.3.0",
|
2017-02-09 19:58:36 +00:00
|
|
|
"canonical-path": "^0.0.2",
|
2017-03-27 16:13:50 +00:00
|
|
|
"codelyzer": "~2.0.0",
|
2017-03-31 23:24:25 +00:00
|
|
|
"concurrently": "^3.4.0",
|
2017-04-13 21:35:13 +00:00
|
|
|
"cross-spawn": "^5.1.0",
|
2017-02-22 19:27:09 +00:00
|
|
|
"dgeni": "^0.4.7",
|
2017-07-28 13:06:28 +00:00
|
|
|
"dgeni-packages": "^0.20.0",
|
2017-02-09 19:58:36 +00:00
|
|
|
"entities": "^1.1.1",
|
2017-04-01 18:34:10 +00:00
|
|
|
"eslint": "^3.19.0",
|
|
|
|
|
"eslint-plugin-jasmine": "^2.2.0",
|
2017-01-25 17:39:01 +00:00
|
|
|
"firebase-tools": "^3.2.1",
|
2017-04-13 21:35:13 +00:00
|
|
|
"fs-extra": "^2.1.2",
|
2017-03-15 21:41:15 +00:00
|
|
|
"globby": "^6.1.0",
|
2017-04-28 14:05:05 +00:00
|
|
|
"hast-util-is-element": "^1.0.0",
|
2017-05-10 17:34:19 +00:00
|
|
|
"hast-util-to-string": "^1.0.0",
|
2017-04-01 18:32:48 +00:00
|
|
|
"html": "^1.0.0",
|
2017-03-31 23:24:25 +00:00
|
|
|
"http-server": "^0.9.0",
|
2017-06-07 21:34:11 +00:00
|
|
|
"ignore": "^3.3.3",
|
2017-04-28 14:05:05 +00:00
|
|
|
"image-size": "^0.5.1",
|
2017-06-18 08:31:30 +00:00
|
|
|
"jasmine-core": "^2.6.4",
|
2017-06-11 12:57:14 +00:00
|
|
|
"jasmine-spec-reporter": "^4.1.0",
|
2017-03-28 17:29:47 +00:00
|
|
|
"jsdom": "^9.12.0",
|
2017-06-11 12:01:25 +00:00
|
|
|
"karma": "^1.7.0",
|
|
|
|
|
"karma-chrome-launcher": "^2.1.1",
|
|
|
|
|
"karma-cli": "^1.0.1",
|
|
|
|
|
"karma-coverage-istanbul-reporter": "^1.3.0",
|
|
|
|
|
"karma-jasmine": "^1.1.0",
|
2017-02-21 03:05:40 +00:00
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
2017-06-13 14:08:31 +00:00
|
|
|
"lighthouse": "^2.1.0",
|
2017-02-09 19:58:36 +00:00
|
|
|
"lodash": "^4.17.4",
|
2017-06-12 20:51:41 +00:00
|
|
|
"lunr": "^2.1.0",
|
2017-02-21 03:05:40 +00:00
|
|
|
"protractor": "~5.1.0",
|
2017-04-27 09:17:15 +00:00
|
|
|
"rehype": "^4.0.0",
|
2017-04-27 13:04:51 +00:00
|
|
|
"rehype-autolink-headings": "^2.0.0",
|
|
|
|
|
"rehype-slug": "^2.0.0",
|
2017-04-11 17:24:08 +00:00
|
|
|
"remark": "^7.0.0",
|
|
|
|
|
"remark-html": "^6.0.0",
|
2017-03-23 17:23:09 +00:00
|
|
|
"rimraf": "^2.6.1",
|
2017-06-14 15:34:13 +00:00
|
|
|
"semver": "^5.3.0",
|
2017-03-15 21:41:15 +00:00
|
|
|
"shelljs": "^0.7.7",
|
2017-04-13 21:35:13 +00:00
|
|
|
"tree-kill": "^1.1.0",
|
2017-02-21 03:05:40 +00:00
|
|
|
"ts-node": "~2.0.0",
|
2017-03-27 16:13:50 +00:00
|
|
|
"tslint": "~4.5.0",
|
2017-06-09 21:36:36 +00:00
|
|
|
"typescript": "2.3.2",
|
2017-06-12 20:51:41 +00:00
|
|
|
"uglify-js": "^3.0.15",
|
2017-05-30 19:24:20 +00:00
|
|
|
"unist-util-filter": "^0.2.1",
|
2017-04-28 14:05:05 +00:00
|
|
|
"unist-util-source": "^1.0.1",
|
|
|
|
|
"unist-util-visit": "^1.1.1",
|
2017-04-16 19:48:22 +00:00
|
|
|
"vrsource-tslint-rules": "^4.0.1",
|
2017-04-13 21:35:13 +00:00
|
|
|
"watchr": "^3.0.1",
|
|
|
|
|
"yargs": "^7.0.2"
|
2017-01-25 11:04:30 +00:00
|
|
|
}
|
|
|
|
|
}
|