This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
forked from thymikee/jest-preset-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.33 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
{
"name": "jest-preset-angular",
"version": "11.1.0",
"description": "Jest preset configuration for Angular projects",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^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 <[email protected]>",
"contributors": [
"Ahn <[email protected]> (https://github.com/ahnpnl)",
"Thomas <[email protected]> (https://github.com/wtho)"
],
"keywords": [
"jest",
"typescript",
"angular",
"testing"
],
"scripts": {
"prepare": "yarn build",
"prebuild": "node scripts/prebuild.js",
"build": "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.14.2",
"jest-environment-jsdom": "^27.0.0",
"pretty-format": "^27.0.0",
"ts-jest": "^27.0.0"
},
"optionalDependencies": {
"esbuild": "0.14.2"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=0.1002.4",
"@angular/compiler-cli": ">=10.0.0",
"@angular/core": ">=10.0.0",
"@angular/platform-browser-dynamic": ">=10.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.3",
"@angular/animations": "~13.1.2",
"@angular/common": "~13.1.2",
"@angular/compiler": "~13.1.2",
"@angular/compiler-cli": "~13.1.2",
"@angular/core": "~13.1.2",
"@angular/platform-browser": "~13.1.2",
"@angular/platform-browser-dynamic": "~13.1.2",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-angular": "^16.0.0",
"@jest/transform": "^27.4.5",
"@jest/types": "^27.4.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.17",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsdoc": "^37.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"execa": "5.1.1",
"fs-extra": "^10.0.0",
"github-files-fetcher": "^1.6.0",
"glob": "^7.1.7",
"husky": "^7.0.2",
"jest": "^27.4.7",
"jest-snapshot-serializer-raw": "^1.2.0",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"rxjs": "^7.3.0",
"tslib": "^2.2.0",
"typescript": "~4.5.4",
"zone.js": "^0.11.4"
}
}