-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"scripts": {
"test": "wireit",
"build": "wireit"
},
"library_repo": "angular/angular",
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "20.19.39",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "5.2.1",
"babel-core": "6.26.3",
"babel-loader": "9.2.1",
"chai": "4.5.0",
"cross-env": "7.0.3",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-firefox-launcher": "2.1.3",
"karma-sourcemap-loader": "0.4.0",
"karma-webpack": "5.0.1",
"ts-helpers": "1.1.2",
"typescript": "~3.9",
"webpack": "5.101.0"
},
"dependencies": {
"@angular/common": "20.1.6",
"@angular/compiler": "16.2.10",
"@angular/core": "20.1.6",
"@angular/forms": "20.1.6",
"@angular/platform-browser": "20.1.6",
"@angular/platform-browser-dynamic": "16.2.10",
"@angular/router": "16.2.10",
"core-js": "3.45.0",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"zone.js": "0.13.1"
},
"wireit": {
"test": {
"dependencies": [
"../..:karma-plugins"
],
"files": [
"karma.conf.js",
"tests.webpack.ts",
"tsconfig.json",
"src",
"meta"
],
"output": [
"results"
],
"command": "cross-env LIBRARY_NAME=@angular/core karma start"
},
"build": {
"dependencies": [
"test"
]
}
}
}