forked from thymikee/jest-preset-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 954 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
{
"name": "jest-preset-angular",
"version": "6.0.1",
"description": "Jest preset configuration for Angular projects",
"main": "index.js",
"repository": "git@github.com:thymikee/jest-preset-angular.git",
"author": "Michał Pierzchała <thymikee@gmail.com>",
"license": "MIT",
"dependencies": {
"jest-environment-jsdom-thirteen": "^0.0.2",
"ts-jest": "~23.10.5"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"jest": "^23.6.0",
"typescript": "^3.2.1"
},
"peerDependencies": {
"@angular/core": ">=2.0.0",
"@angular/platform-browser-dynamic": ">=2.0.0",
"jest": "^23.0.0"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.spec.json"
}
},
"rootDir": "__tests__"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"test:ci": "jest -i"
}
}