forked from shlomiassaf/ngc-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ngc-webpack",
"version": "4.1.2",
"description": "A wrapper for the @ngtools/webpack with hooks into the compilation process",
"author": "Shlomi Assaf <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shlomiassaf/ngc-webpack.git"
},
"main": "index.js",
"bin": {
"ngc-w": "src/cli/cli.js",
"ngc-w-cli": "src/cli/ng-cli.js"
},
"typings": "index.d.ts",
"keywords": [
"angular",
"compiler",
"webpack",
"laoder",
"plugin"
],
"scripts": {
"clean:build": "npm run rimraf -- dist",
"ci": "node -e \"console.log('TypeScript VERSION: ' + require('typescript').version)\" && npm run test",
"test": "npm run build-test && mocha dist/test/*.spec.js --recursive",
"watch": "npm run build -- -w",
"build": "npm run clean:build && tsc --project tsconfig.json",
"watch-test": "npm run build-test -- -w",
"build-test": "npm run clean:build && tsc --project tsconfig.test.json",
"rimraf": "rimraf"
},
"dependencies": {
"@types/minimist": "^1.2.0",
"loader-utils": "^1.1.0",
"magic-string": "^0.22.3",
"minimist": "^1.2.0",
"reflect-metadata": "^0.1.10",
"resolve": "^1.5.0",
"semver": "^5.4.1",
"source-map": "^0.5.6",
"ts-node": "^3.2.0"
},
"peerDependencies": {
"@angular/compiler-cli": "^5.0.0",
"@ngtools/webpack": "^1.8.0"
},
"devDependencies": {
"@angular-devkit/build-optimizer": "^0.0.32",
"@angular/cli": "^1.5.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"@ngtools/webpack": "^1.8.0",
"@types/chai": "^3.4.34",
"@types/fs-extra": "^4.0.3",
"@types/jest": "^20.0.4",
"@types/mocha": "^2.2.37",
"@types/node": "^7.0.0",
"@types/resolve": "^0.0.4",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.3.32",
"@types/source-map": "^0.5.2",
"@types/webpack": "^3.0.14",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.1",
"chai": "^3.5.0",
"cli-table": "^0.3.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.2",
"fs-extra": "^4.0.2",
"html-loader": "^0.5.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"mocha": "^3.4.2",
"ng-router-loader": "^2.1.0",
"node-map-directory": "0.1.0",
"node-sass": "^4.6.0",
"raw-loader": "0.5.1",
"rimraf": "~2.5.4",
"rxjs": "^5.5.2",
"sass-loader": "^6.0.6",
"string-replace-loader": "^1.3.0",
"style-loader": "^0.18.2",
"to-string-loader": "^1.1.4",
"ts-jest": "^20.0.7",
"tsconfig-paths": "^2.3.0",
"typescript": "~2.4.2",
"webpack": "^3.8.1",
"zone.js": "^0.8.14"
},
"bugs": {
"url": "https://github.com/shlomiassaf/ngc-webpack/issues"
},
"homepage": "https://github.com/shlomiassaf/ngc-webpack#readme"
}