forked from thymikee/jest-preset-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "jest-preset-angular",
"version": "12.1.0",
"description": "Jest preset configuration for Angular projects",
"license": "MIT",
"engines": {
"node": "^14.15.0 || >=16.10.0"
},
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thymikee/jest-preset-angular.git"
},
"bugs": {
"url": "https://github.com/thymikee/jest-preset-angular/issues"
},
"homepage": "https://thymikee.github.io/jest-preset-angular",
"author": "Michał Pierzchała <thymikee@gmail.com>",
"contributors": [
"Ahn <anhpnnd@gmail.com> (https://github.com/ahnpnl)",
"Thomas <thomas@wtho.de> (https://github.com/wtho)"
],
"keywords": [
"jest",
"typescript",
"angular",
"testing"
],
"scripts": {
"build": "node scripts/prebuild.js && tsc -p tsconfig.build.json",
"postinstall": "husky install",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts .",
"lint-prettier": "prettier \"**/*.{yml,yaml,md}\" --write",
"lint-prettier-ci": "prettier \"**/*.{yml,yaml,md}\" --check",
"pretest": "tsc -p tsconfig.spec.json --noEmit",
"test": "jest",
"test-examples": "node scripts/test-examples.js",
"doc": "cd website && yarn start",
"doc:build": "cd website && yarn build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"update-e2e": "node scripts/update-e2e.js"
},
"dependencies": {
"bs-logger": "^0.2.6",
"esbuild-wasm": ">=0.13.8",
"jest-environment-jsdom": "^28.0.0",
"pretty-format": "^28.0.0",
"ts-jest": "^28.0.0"
},
"optionalDependencies": {
"esbuild": ">=0.13.8"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=0.1102.19 <15.0.0",
"@angular/compiler-cli": ">=11.2.14 <15.0.0",
"@angular/core": ">=11.2.14 <15.0.0",
"@angular/platform-browser-dynamic": ">=11.2.14 <15.0.0",
"jest": "^28.0.0",
"typescript": ">=4.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.2",
"@angular/animations": "^14.0.3",
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/compiler-cli": "~14.0.3",
"@angular/core": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-angular": "^17.0.0",
"@jest/transform": "^28.1.1",
"@jest/types": "^28.1.1",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.41",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"execa": "5.1.1",
"fs-extra": "^10.1.0",
"github-files-fetcher": "^1.6.0",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-snapshot-serializer-raw": "^1.2.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"zone.js": "^0.11.6"
},
"packageManager": "yarn@3.2.1"
}