-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "wallaby-jest-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng lint && ng test wallaby-jest-angular --coverage --watch=false && ng build",
"test": "ng test wallaby-jest-angular --coverage --watch=false",
"test:update": "ng test wallaby-jest-angular --coverage --watch=false -u",
"test:watch": "ng test wallaby-jest-angular --watch --coverage",
"test:coverage": "ng test wallaby-jest-angular --coverage",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setupJest.ts"
]
},
"dependencies": {
"@angular/animations": "~8.0.1",
"@angular/common": "~8.0.1",
"@angular/compiler": "~8.0.1",
"@angular/core": "~8.0.1",
"@angular/forms": "~8.0.1",
"@angular/platform-browser": "~8.0.1",
"@angular/platform-browser-dynamic": "~8.0.1",
"@angular/router": "~8.0.1",
"core-js": "^3.1.4",
"rxjs": "~6.5.2",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-builders/jest": "^8.0.3",
"@angular-devkit/build-angular": "~0.800.0",
"@angular/cli": "~8.0.3",
"@angular/compiler-cli": "~8.0.1",
"@types/jest": "^24.0.11",
"@angular/language-service": "~8.0.1",
"@types/node": "~8.9.4",
"codelyzer": "^5.1.0",
"jest": "^24.8.0",
"jest-html-reporter": "2.5.0",
"jest-preset-angular": "^7.1.1",
"ts-node": "~8.3.0",
"tslint": "~5.17.0",
"typescript": "~3.4.5",
"wallaby-webpack": "^3.9.15"
}
}