This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
43 lines (43 loc) · 1.8 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
40
41
42
43
{
"name": "closure-compiler-angular-bundling",
"version": "1.0.0",
"description": "Demonstrate Angular app bundled and optimized by Google Closure Compiler",
"dependencies": {
"@angular/animations": "7.2.13",
"@angular/common": "7.2.13",
"@angular/compiler": "7.2.13",
"@angular/compiler-cli": "7.2.13",
"@angular/core": "7.2.13",
"@angular/platform-browser": "7.2.13",
"@angular/platform-server": "7.2.13",
"google-closure-compiler": "20180716.0.0",
"rxjs": "^6.4.0",
"typescript": "3.1.1",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@types/jasmine": "2.5.41",
"@types/node": "^10.9.4",
"clang-format": "^1.0.55",
"concurrently": "3.4.0",
"lite-server": "2.2.2",
"protractor": "^5.1.2",
"source-map-explorer": "^1.5.0",
"tsickle": "^0.34.3"
},
"scripts": {
"postinstall": "webdriver-manager update --gecko false --standalone false $CHROMEDRIVER_VERSION_ARG",
"build": "ngc -p src && yarn run closure && ./size_report.sh",
"format": "clang-format --glob='{{src,test}/**/,}*.{js,ts}' -i",
"format:enforce": "clang-format --glob='{{src,test}/**/,}*.{js,ts}' -output-replacements-xml | grep -c offset | grep 0",
"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",
"clean:all": "rimraf ./dist"
},
"author": "Alex Eagle <[email protected]> (https://angular.io/)",
"license": "MIT"
}