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": {
|
2018-02-27 18:24:07 -05:00
|
|
|
"preinstall": "node ../tools/yarn/check-yarn.js",
|
|
|
|
"postinstall": "node tools/cli-patches/patch.js && uglifyjs node_modules/lunr/lunr.js -c -m -o src/assets/js/lunr.min.js --source-map",
|
2017-10-04 07:03:24 -04:00
|
|
|
"aio-use-local": "node tools/ng-packages-installer overwrite . --debug --ignore-packages @angular/service-worker",
|
2017-10-24 06:43:52 -04:00
|
|
|
"aio-use-npm": "node tools/ng-packages-installer restore .",
|
2017-10-06 08:37:56 -04:00
|
|
|
"aio-check-local": "node tools/ng-packages-installer check .",
|
2017-03-03 06:18:15 -05:00
|
|
|
"ng": "yarn check-env && ng",
|
2017-11-04 06:38:00 -04:00
|
|
|
"start": "yarn check-env && ng serve --aot",
|
2017-08-15 20:34:53 -04:00
|
|
|
"prebuild": "yarn setup",
|
|
|
|
"build": "yarn ~~build",
|
|
|
|
"prebuild-local": "yarn setup-local",
|
|
|
|
"build-local": "yarn ~~build",
|
2018-01-25 05:13:30 -05:00
|
|
|
"lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint",
|
2017-04-21 15:20:02 -04:00
|
|
|
"test": "yarn check-env && ng test",
|
2018-02-27 18:24:07 -05:00
|
|
|
"pree2e": "yarn check-env && yarn update-webdriver",
|
2017-06-14 11:34:13 -04:00
|
|
|
"e2e": "ng e2e --no-webdriver-update",
|
2018-01-11 08:40:27 -05:00
|
|
|
"e2e-prod": "yarn e2e --environment=dev --target=production",
|
2017-10-19 05:19:45 -04:00
|
|
|
"presetup": "yarn install --frozen-lockfile && yarn ~~check-env && yarn boilerplate:remove",
|
2017-10-06 09:48:37 -04:00
|
|
|
"setup": "yarn aio-use-npm && yarn example-use-npm",
|
2018-02-01 11:30:50 -05:00
|
|
|
"postsetup": "yarn boilerplate:add && yarn build-ie-polyfills && yarn docs",
|
2017-08-15 20:34:53 -04:00
|
|
|
"presetup-local": "yarn presetup",
|
2017-10-24 06:43:52 -04:00
|
|
|
"setup-local": "yarn aio-use-local && yarn example-use-local",
|
2017-08-15 20:34:53 -04:00
|
|
|
"postsetup-local": "yarn postsetup",
|
2017-09-23 10:25:11 -04:00
|
|
|
"test-pwa-score-localhost": "concurrently --kill-others --success first \"http-server dist -p 4200 --silent\" \"yarn test-pwa-score http://localhost:4200 90\"",
|
2017-03-31 19:24:25 -04:00
|
|
|
"test-pwa-score": "node scripts/test-pwa-score",
|
2017-10-06 08:37:56 -04:00
|
|
|
"example-e2e": "yarn example-check-local && node ./tools/examples/run-example-e2e",
|
2017-05-03 13:31:02 -04:00
|
|
|
"example-lint": "tslint -c \"content/examples/tslint.json\" \"content/examples/**/*.ts\" -e \"content/examples/styleguide/**/*.avoid.ts\"",
|
2017-10-06 08:37:56 -04:00
|
|
|
"example-use-local": "node tools/ng-packages-installer overwrite ./tools/examples/shared",
|
|
|
|
"example-use-npm": "node tools/ng-packages-installer restore ./tools/examples/shared",
|
|
|
|
"example-check-local": "node tools/ng-packages-installer check ./tools/examples/shared",
|
2017-06-15 14:26:25 -04:00
|
|
|
"deploy-preview": "scripts/deploy-preview.sh",
|
2017-07-27 11:12:04 -04:00
|
|
|
"deploy-production": "scripts/deploy-to-firebase.sh",
|
2017-08-15 20:34:53 -04:00
|
|
|
"check-env": "yarn ~~check-env",
|
2017-10-06 08:37:56 -04:00
|
|
|
"postcheck-env": "yarn aio-check-local",
|
2017-05-23 20:20:56 -04:00
|
|
|
"payload-size": "scripts/payload.sh",
|
2018-02-01 11:30:50 -05:00
|
|
|
"predocs": "yarn generate-stackblitz && yarn generate-zips",
|
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",
|
2017-06-21 09:18:26 -04:00
|
|
|
"docs-test": "node tools/transforms/test.js",
|
2018-04-15 16:55:21 -04:00
|
|
|
"redirects-test": "jasmine-ts tests/deployment/unit/**/*.spec.ts",
|
2018-01-25 05:13:30 -05:00
|
|
|
"firebase-utils-test": "jasmine-ts tools/firebase-test-utils/*.spec.ts",
|
|
|
|
"tools-lint": "tslint -c \"tools/tslint.json\" \"tools/firebase-test-utils/**/*.ts\"",
|
|
|
|
"tools-test": "./scripts/deploy-to-firebase.test.sh && yarn docs-test && yarn boilerplate:test && jasmine tools/ng-packages-installer/index.spec.js && yarn firebase-utils-test",
|
2018-01-26 11:05:52 -05:00
|
|
|
"preserve-and-sync": "yarn docs",
|
|
|
|
"serve-and-sync": "concurrently --kill-others \"yarn docs-watch --watch-only\" \"yarn start\"",
|
2017-07-27 03:29:17 -04: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-11-03 13:08:28 -04:00
|
|
|
"generate-stackblitz": "node ./tools/stackblitz-builder/generateStackblitz",
|
2017-05-11 16:21:27 -04: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 16:58:11 -04:00
|
|
|
"sw-copy": "cp node_modules/@angular/service-worker/bundles/worker-basic.min.js dist/",
|
2017-08-15 20:34:53 -04:00
|
|
|
"build-ie-polyfills": "node node_modules/webpack/bin/webpack.js -p src/ie-polyfills.js src/generated/ie-polyfills.min.js",
|
2018-02-27 18:24:07 -05:00
|
|
|
"update-webdriver": "webdriver-manager update --standalone false --gecko false $CHROMEDRIVER_VERSION_ARG",
|
2017-08-15 20:34:53 -04:00
|
|
|
"~~check-env": "node scripts/check-environment",
|
2018-04-07 01:53:38 -04:00
|
|
|
"~~build": "ng build --prod --configuration=stable",
|
2018-02-27 18:24:07 -05:00
|
|
|
"post~~build": "yarn sw-manifest && yarn sw-copy"
|
2017-01-27 03:20:51 -05:00
|
|
|
},
|
2017-06-14 11:34:13 -04:00
|
|
|
"engines": {
|
2017-12-05 14:36:08 -05:00
|
|
|
"node": ">=8.9.1 <9.0.0",
|
2018-01-09 05:02:03 -05:00
|
|
|
"yarn": ">=1.3.2 <2.0.0"
|
2017-06-14 11:34:13 -04:00
|
|
|
},
|
2017-01-27 03:20:51 -05:00
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2018-04-06 20:57:24 -04:00
|
|
|
"@angular/animations": "^6.0.0-rc.3",
|
2018-04-07 04:18:00 -04:00
|
|
|
"@angular/cdk": "^6.0.0-rc.1",
|
2018-04-06 20:57:24 -04:00
|
|
|
"@angular/common": "^6.0.0-rc.3",
|
|
|
|
"@angular/core": "^6.0.0-rc.3",
|
|
|
|
"@angular/elements": "^6.0.0-rc.3",
|
|
|
|
"@angular/forms": "^6.0.0-rc.3",
|
|
|
|
"@angular/http": "^6.0.0-rc.3",
|
2018-04-07 04:18:00 -04:00
|
|
|
"@angular/material": "^6.0.0-rc.1",
|
2018-04-06 20:57:24 -04:00
|
|
|
"@angular/platform-browser": "^6.0.0-rc.3",
|
|
|
|
"@angular/platform-browser-dynamic": "^6.0.0-rc.3",
|
|
|
|
"@angular/platform-server": "^6.0.0-rc.3",
|
|
|
|
"@angular/router": "^6.0.0-rc.3",
|
2017-06-16 13:57:01 -04:00
|
|
|
"@angular/service-worker": "^1.0.0-beta.16",
|
2018-02-28 15:05:59 -05:00
|
|
|
"@webcomponents/custom-elements": "^1.0.8",
|
2017-05-15 16:22:06 -04:00
|
|
|
"classlist.js": "^1.1.20150312",
|
2017-01-27 03:20:51 -05:00
|
|
|
"core-js": "^2.4.1",
|
2017-06-13 03:46:46 -04:00
|
|
|
"jasmine": "^2.6.0",
|
2017-05-11 16:21:27 -04:00
|
|
|
"ng-pwa-tools": "^0.0.10",
|
2018-04-13 10:25:49 -04:00
|
|
|
"rxjs": "^6.0.0-turbo-rc.4",
|
|
|
|
"rxjs-compat": "^6.0.0-turbo-rc.4",
|
2018-03-20 02:56:30 -04:00
|
|
|
"tslib": "^1.9.0",
|
2017-05-15 16:22:06 -04:00
|
|
|
"web-animations-js": "^2.2.5",
|
2018-04-06 12:00:28 -04:00
|
|
|
"zone.js": "^0.8.26"
|
2017-01-27 03:20:51 -05:00
|
|
|
},
|
2017-01-25 06:04:30 -05:00
|
|
|
"devDependencies": {
|
2018-04-13 10:25:49 -04:00
|
|
|
"@angular-devkit/build-angular": "~0.5.0",
|
2018-04-07 00:09:12 -04:00
|
|
|
"@angular/cli": "^6.0.0-rc.2",
|
2018-04-07 14:41:02 -04:00
|
|
|
"@angular/compiler": "^6.0.0-rc.3",
|
2018-04-06 20:57:24 -04:00
|
|
|
"@angular/compiler-cli": "^6.0.0-rc.3",
|
2017-06-18 04:31:30 -04:00
|
|
|
"@types/jasmine": "^2.5.52",
|
2017-11-02 15:31:31 -04:00
|
|
|
"@types/jasminewd2": "^2.0.3",
|
2017-02-20 22:05:40 -05:00
|
|
|
"@types/node": "~6.0.60",
|
2017-04-16 17:40:47 -04:00
|
|
|
"archiver": "^1.3.0",
|
2017-02-09 14:58:36 -05:00
|
|
|
"canonical-path": "^0.0.2",
|
2017-08-15 20:34:53 -04:00
|
|
|
"chalk": "^2.1.0",
|
2018-01-25 05:13:30 -05:00
|
|
|
"cjson": "^0.5.0",
|
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-04-13 17:35:13 -04:00
|
|
|
"cross-spawn": "^5.1.0",
|
2017-11-17 08:37:15 -05:00
|
|
|
"css-selector-parser": "^1.3.0",
|
2017-02-22 14:27:09 -05:00
|
|
|
"dgeni": "^0.4.7",
|
2018-03-02 17:53:50 -05:00
|
|
|
"dgeni-packages": "^0.26.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-04-13 17:35:13 -04:00
|
|
|
"fs-extra": "^2.1.2",
|
2017-03-15 17:41:15 -04:00
|
|
|
"globby": "^6.1.0",
|
2017-04-28 10:05:05 -04:00
|
|
|
"hast-util-is-element": "^1.0.0",
|
2017-05-10 13:34:19 -04:00
|
|
|
"hast-util-to-string": "^1.0.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-06-07 17:34:11 -04:00
|
|
|
"ignore": "^3.3.3",
|
2017-04-28 10:05:05 -04:00
|
|
|
"image-size": "^0.5.1",
|
2017-11-29 09:30:04 -05:00
|
|
|
"jasmine-core": "^2.8.0",
|
2017-06-11 08:57:14 -04:00
|
|
|
"jasmine-spec-reporter": "^4.1.0",
|
2018-01-25 05:13:30 -05:00
|
|
|
"jasmine-ts": "^0.2.1",
|
2017-03-28 13:29:47 -04:00
|
|
|
"jsdom": "^9.12.0",
|
2017-06-11 08:01:25 -04: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-20 22:05:40 -05:00
|
|
|
"karma-jasmine-html-reporter": "^0.2.2",
|
2017-10-10 05:22:06 -04:00
|
|
|
"lighthouse": "^2.5.0",
|
2017-02-09 14:58:36 -05:00
|
|
|
"lodash": "^4.17.4",
|
2017-06-12 16:51:41 -04:00
|
|
|
"lunr": "^2.1.0",
|
2017-11-02 15:32:23 -04:00
|
|
|
"protractor": "^5.2.0",
|
2017-04-27 05:17:15 -04:00
|
|
|
"rehype": "^4.0.0",
|
2017-04-27 09:04:51 -04:00
|
|
|
"rehype-slug": "^2.0.0",
|
2017-04-11 13:24:08 -04:00
|
|
|
"remark": "^7.0.0",
|
|
|
|
"remark-html": "^6.0.0",
|
2017-03-23 13:23:09 -04:00
|
|
|
"rimraf": "^2.6.1",
|
2017-06-14 11:34:13 -04:00
|
|
|
"semver": "^5.3.0",
|
2017-03-15 17:41:15 -04:00
|
|
|
"shelljs": "^0.7.7",
|
2017-04-13 17:35:13 -04:00
|
|
|
"tree-kill": "^1.1.0",
|
2017-10-02 08:09:39 -04:00
|
|
|
"ts-node": "^3.3.0",
|
2017-03-27 12:13:50 -04:00
|
|
|
"tslint": "~4.5.0",
|
2018-03-28 13:51:54 -04:00
|
|
|
"typescript": "~2.7.2",
|
2017-06-12 16:51:41 -04:00
|
|
|
"uglify-js": "^3.0.15",
|
2017-05-30 15:24:20 -04:00
|
|
|
"unist-util-filter": "^0.2.1",
|
2017-04-28 10:05:05 -04:00
|
|
|
"unist-util-source": "^1.0.1",
|
|
|
|
"unist-util-visit": "^1.1.1",
|
2017-08-18 09:48:40 -04:00
|
|
|
"unist-util-visit-parents": "^1.1.1",
|
2017-04-16 15:48:22 -04:00
|
|
|
"vrsource-tslint-rules": "^4.0.1",
|
2017-04-13 17:35:13 -04:00
|
|
|
"watchr": "^3.0.1",
|
2018-01-25 05:13:30 -05:00
|
|
|
"xregexp": "^4.0.0",
|
2018-04-07 14:41:02 -04:00
|
|
|
"yargs": "^7.0.2"
|
2017-01-25 06:04:30 -05:00
|
|
|
}
|
2018-04-15 16:46:17 -04:00
|
|
|
}
|