-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "angular-builder-custom-terser-options",
"version": "2.0.0-aplha.0",
"description": "Angular builder that allows Terser (Uglify) customization",
"main": "dist/index.js",
"builders": "builders.json",
"scripts": {
"compile": "npx rimraf ./dist && npx tsc -p ./tsconfig.prod.json && npx copyfiles ./src/**/*.json dist",
"lint": "npx tsc -p ./tsconfig.json --noEmit && npx tslint -c ./tslint.json -p ./tsconfig.json",
"prepack": "npm run compile"
},
"author": "keenondrums (andrey.goncharov+it@protonmail.com)",
"license": "MIT",
"keywords": [
"angular",
"builder",
"custom",
"uglify",
"terser"
],
"dependencies": {},
"devDependencies": {
"@angular-devkit/architect": "^0.802.2",
"@angular-devkit/build-angular": "^0.802.2",
"@angular-devkit/core": "^8.2.2",
"@angular/compiler": "^8.2.2",
"@angular/compiler-cli": "^8.2.2",
"@angular/core": "^8.2.2",
"@types/karma": "^3.0.3",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/webpack-dev-server": "^3.1.2",
"copyfiles": "^2.1.0",
"doctoc": "^1.4.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"terser-webpack-plugin": "^1.2.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3",
"webpack": "^4.39.2"
},
"peerDependencies": {
"@angular-devkit/architect": "^0.802.2",
"@angular-devkit/build-angular": "^0.802.2",
"@angular-devkit/core": "^0.802.2",
"@angular/compiler-cli": "^8.2.2",
"@angular/compiler": "^8.2.2",
"@angular/core": "^8.2.2",
"terser-webpack-plugin": "^1.2.2"
}
}