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
34 lines (34 loc) · 910 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 910 Bytes
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
{
"name": "angular-builders",
"description": "A consolidation of community builders for Angular build facade",
"repository": {
"type": "git",
"url": "https://github.com/meltedspark/angular-builders"
},
"author": "Evgeny Barabanov",
"license": "MIT",
"engines": {
"node": ">=8.9"
},
"scripts": {
"postbuild": "npm test && npm run e2e",
"build": "tsc && ts-node merge-schemes.ts",
"test": "jest src",
"e2e": "jest e2e"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.10.3",
"@angular/cli": "^7.0.3",
"@angular/compiler": "^7.0.1",
"@angular/compiler-cli": "^7.0.1",
"@types/jest": "^23.3.7",
"@types/lodash": "^4.14.117",
"@types/node": "~10.12.0",
"@types/webpack-merge": "^4.1.3",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"ts-jest": "^23.10.4",
"ts-node": "~7.0.1",
"typescript": "~3.1.3"
}
}