forked from just-jeb/angular-builders
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
{
"name": "@angular-builders/custom-webpack",
"version": "7.0.0",
"description": "Custom webpack builders for Angular build facade. Allow to modify Angular build configuration without ejecting it",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/meltedspark/angular-builders/packages/custom-webpack"
},
"author": "Evgeny Barabanov",
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"keywords": [
"cli",
"angular",
"builder",
"angular6",
"angular-cli",
"webpack",
"custom"
],
"scripts": {
"postbuild": "yarn test && yarn run e2e",
"build": "../../node_modules/.bin/tsc && ../../node_modules/.bin/ts-node ../../merge-schemes.ts",
"test": "../../node_modules/.bin/jest --config ../../jest-ut.config.js",
"e2e": "../../node_modules/.bin/jest --config ../../jest-e2e.config.js"
},
"builders": "builders.json",
"dependencies": {
"lodash": "^4.17.10"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">= 0.10.0"
}
}