-
-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
60 lines (60 loc) · 1.57 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
55
56
57
58
59
60
{
"name": "@angular-builders/custom-webpack",
"version": "18.0.1-beta.0",
"description": "Custom webpack builders for Angular build facade. Allow to modify Angular build configuration without ejecting it",
"main": "dist/index.js",
"files": [
"dist",
"builders.json"
],
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders",
"directory": "packages/custom-webpack"
},
"publishConfig": {
"access": "public"
},
"author": "JeB Barabanov",
"license": "MIT",
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"keywords": [
"cli",
"angular",
"builder",
"angular6",
"angular-cli",
"webpack",
"custom"
],
"scripts": {
"prebuild": "yarn clean",
"build": "yarn prebuild && tsc && ts-node ../../merge-schemes.ts && yarn postbuild",
"postbuild": "yarn test && yarn run e2e",
"test": "jest --config ../../jest-ut.config.js",
"e2e": "jest --config ../../jest-e2e.config.js",
"clean": "rimraf dist",
"ci": "./scripts/ci.sh"
},
"builders": "builders.json",
"dependencies": {
"@angular-builders/common": "workspace:*",
"@angular-devkit/architect": ">=0.1800.0 < 0.1900.0",
"@angular-devkit/build-angular": "^18.0.0",
"@angular-devkit/core": "^18.0.0",
"lodash": "^4.17.15",
"webpack-merge": "^6.0.0"
},
"peerDependencies": {
"@angular/compiler-cli": "^18.0.0"
},
"devDependencies": {
"@angular/build": "^18.0.0",
"jest": "29.7.0",
"rimraf": "^5.0.0",
"ts-node": "^10.0.0",
"typescript": "5.4.5"
}
}