-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathpackage.json
40 lines (40 loc) · 1019 Bytes
/
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
{
"name": "@ngtools/webpack",
"version": "0.0.0",
"description": "Webpack plugin that AoT compiles your Angular components and modules.",
"main": "./src/index.js",
"typings": "src/index.d.ts",
"license": "MIT",
"keywords": [
"angular",
"webpack",
"plugin",
"aot"
],
"repository": {
"type": "git",
"url": "https://github.com/angular/angular-cli.git"
},
"author": "angular",
"bugs": {
"url": "https://github.com/angular/angular-cli/issues"
},
"homepage": "https://github.com/angular/angular-cli/tree/master/packages/@ngtools/webpack",
"dependencies": {
"@angular-devkit/core": "0.0.0",
"enhanced-resolve": "4.1.1",
"rxjs": "6.5.4",
"webpack-sources": "1.4.3"
},
"peerDependencies": {
"@angular/compiler-cli": ">=9.0.0 < 10",
"typescript": ">=3.6 < 3.9",
"webpack": "^4.0.0"
},
"devDependencies": {
"@angular/compiler": "9.1.4",
"@angular/compiler-cli": "9.1.4",
"typescript": "3.8.3",
"webpack": "4.42.0"
}
}