-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "ngw",
"version": "7.0.0",
"description": "Provides an opportunity to overload webpack config for angular-cli applications",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "echo test",
"coverage": "echo coverage",
"build": "tsc",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Angular-RU/ngw.git"
},
"author": "",
"bin": {
"ngw": "./bin/ngw"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Angular-RU/ngw/issues"
},
"homepage": "https://github.com/Angular-RU/ngw#readme",
"peerDependencies": {
"@types/node": "*",
"@types/webpack": "*"
},
"dependencies": {
"ts-node": "^7.0.1",
"typescript": "^3.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.6.7",
"@angular-devkit/core": "0.6.7",
"@types/node": "^9.4.6",
"@types/webpack": "^3.0.0",
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0"
}
}