-
Notifications
You must be signed in to change notification settings - Fork 309
/
package.json
126 lines (126 loc) · 4.58 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "jest-preset-angular",
"version": "14.4.2",
"description": "Jest preset configuration for Angular projects",
"license": "MIT",
"engines": {
"node": "^14.15.0 || >=16.10.0"
},
"main": "build/index.js",
"typings": "build/index.d.ts",
"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-transformers-bundle": "esbuild --bundle --minify --target=es6 src/transformers/jit_transform.d.ts --platform=node --external:typescript --outfile=./src/transformers/jit_transform.js --format=cjs --define:import.meta.url=import_meta_url --inject:./src/transformers/esm_interop_inject.cjs && cp src/transformers/jit_transform.js build/transformers/jit_transform.js",
"build": "tsc -p tsconfig.build.json && yarn build-transformers-bundle",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"lint-prettier": "prettier \"**/*.{yml,yaml,md}\" --write",
"lint-prettier-ci": "prettier \"**/*.{yml,yaml,md}\" --check",
"test": "tsc -p tsconfig-base.spec.json --noEmit && yarn build && yarn test-cjs && yarn test-esm",
"test-cjs": "jest -c=jest-cjs.config.ts --no-cache && jest -c=jest-transpile-cjs.config.ts --no-cache",
"test-esm": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-esm.config.ts --no-cache && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-transpile-esm.config.ts --no-cache",
"test-examples": "yarn build && node scripts/test-examples.js",
"test-perf": "jest -c=performance/jest.config.ts --no-cache",
"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",
"prepare": "husky"
},
"dependencies": {
"bs-logger": "^0.2.6",
"esbuild-wasm": ">=0.15.13",
"jest-environment-jsdom": "^29.7.0",
"jest-util": "^29.7.0",
"pretty-format": "^29.7.0",
"ts-jest": "^29.0.0"
},
"optionalDependencies": {
"esbuild": ">=0.15.13"
},
"peerDependencies": {
"@angular/compiler-cli": ">=15.0.0 <20.0.0",
"@angular/core": ">=15.0.0 <20.0.0",
"@angular/platform-browser-dynamic": ">=15.0.0 <20.0.0",
"jest": "^29.0.0",
"jsdom": ">=20.0.0 <=26.0.0",
"typescript": ">=4.8"
},
"peerDependenciesMeta": {
"jsdom": {
"optional": true
}
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular-eslint/eslint-plugin": "^18.4.3",
"@angular-eslint/eslint-plugin-template": "^18.4.3",
"@angular-eslint/template-parser": "^18.4.3",
"@angular/animations": "^19.0.5",
"@angular/cdk": "^19.0.4",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/compiler-cli": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/material": "^19.0.4",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-angular": "^19.6.0",
"@jest/transform": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"babel-jest": "^29.7.0",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^4.2.1",
"execa": "5.1.1",
"fs-extra": "^11.2.0",
"github-files-fetcher": "^1.6.0",
"glob": "^10.4.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "~5.6.2",
"zone.js": "~0.15.0"
},
"packageManager": "yarn@4.5.3"
}