This repository has been archived by the owner on Jun 28, 2022. It is now read-only.
forked from alexeagle/closure-compiler-angular-bundling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "closure-compiler-angular-bundling",
"version": "1.0.0",
"description": "Demonstrate Angular app bundled and optimized by Google Closure Compiler",
"devDependencies": {
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/tsc-wrapped": "^4.0.1",
"@types/jasmine": "^2.5.47",
"google-closure-compiler": "20170218.0.0",
"protractor": "^5.1.1",
"rxjs": "5.3.0",
"rxjs-src": "https://github.com/ReactiveX/rxjs/tarball/5.3.0",
"source-map-explorer": "^1.3.3",
"tsickle": "^0.2.3",
"typescript": "~2.1",
"zone.js": "^0.8.4",
"concurrently": "3.1.0",
"lite-server": "2.2.2"
},
"scripts": {
"build_rxjs_es5esm": "tsc -p vendor/tsconfig.rxjs-es5+esm.json",
"build_rxjs_es6": "tsc -p vendor/tsconfig.rxjs-es6.json",
"build_rxjs_tsickle": "node ./node_modules/@angular/tsc-wrapped/src/main -p vendor/tsconfig.rxjs-tsickle.json",
"postinstall": "yarn run build_rxjs_es6 && webdriver-manager update",
"build": "ngc -p src && yarn run closure && ./size_report.sh",
"closure": "java -jar node_modules/google-closure-compiler/compiler.jar --flagfile closure.conf",
"closure-debug": "java -jar node_modules/google-closure-compiler/compiler.jar --flagfile closure.conf --debug --formatting PRETTY_PRINT",
"serve": "lite-server -c test/browser.config.json",
"explore": "source-map-explorer dist/bundle.js dist/bundle.js.map",
"pretest": "tsc -p test",
"test": "concurrently \"yarn run serve\" protractor --kill-others --success first"
},
"author": "Alex Eagle <alexeagle@google.com> (https://angular.io/)",
"license": "MIT"
}