-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "@angular-builders/jest",
"version": "15.0.1-beta.1",
"description": "Jest runner for Angular build facade. Allows ng test run with Jest instead of Karma",
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders",
"directory": "packages/jest"
},
"publishConfig": {
"access": "public"
},
"author": "JeB Barabanov",
"license": "MIT",
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"main": "dist/index.js",
"files": [
"dist",
"builders.json"
],
"keywords": [
"jest",
"testing",
"test",
"angular",
"cli",
"builder",
"runner"
],
"builders": "builders.json",
"scripts": {
"prebuild": "yarn clean && yarn generate",
"build": "yarn prebuild && tsc && yarn postbuild",
"postbuild": "yarn copy && yarn test",
"test": "jest --config ../../jest-ut.config.js",
"e2e": "jest --config ../../jest-e2e.config.js",
"clean": "rimraf dist src/schema.ts",
"copy": "cpy src/schema.json dist",
"generate": "quicktype -s schema src/schema.json -o src/schema.ts",
"ci": "./scripts/ci.sh"
},
"dependencies": {
"@angular-devkit/architect": ">=0.1500.0 < 0.1600.0",
"@angular-devkit/core": "^15.0.0",
"jest-preset-angular": "12.2.6",
"lodash": "^4.17.15",
"tsconfig-paths": "^4.1.0"
},
"peerDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"jest": ">=28"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"cpy-cli": "^3.1.1",
"jest": "28.1.3",
"quicktype": "^15.0.260",
"rimraf": "^3.0.2",
"typescript": "4.8.2"
}
}