forked from just-jeb/angular-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "@angular-builders/custom-webpack",
"version": "14.0.1",
"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.15.0 || >=16.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-devkit/architect": ">=0.1400.0 < 0.1500.0",
"@angular-devkit/build-angular": "^14.0.0",
"@angular-devkit/core": "^14.0.0",
"lodash": "^4.17.15",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"webpack-merge": "^5.7.3"
},
"peerDependencies": {
"@angular/compiler-cli": "^14.0.0"
},
"devDependencies": {
"jest": "28.1.3",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
}
}