-
Notifications
You must be signed in to change notification settings - Fork 471
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.38 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.38 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "ts-jest",
"version": "29.4.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"bin": {
"ts-jest": "cli.js"
},
"description": "A Jest transformer with source map support that lets you use Jest to test projects written in TypeScript",
"scripts": {
"prebuild": "rimraf --glob dist coverage *.tgz",
"build": "tsc -p tsconfig.build.json",
"postbuild": "node scripts/post-build.js",
"test": "jest -c=jest.config.ts",
"test-e2e-cjs": "jest -c=jest-e2e-cjs.config.ts --no-cache",
"test-e2e-esm": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js -c=jest-e2e-esm.config.ts --no-cache",
"test-examples": "node scripts/test-examples.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"lint-prettier": "prettier \"**/*.{yml,yaml,md}\" --write",
"lint-prettier-ci": "prettier '**/*.{yml,yaml,md}' --check",
"doc": "cd website && npm run start",
"doc:build": "cd website && npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"preversion": "npm run test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kulshekhar/ts-jest.git"
},
"keywords": [
"jest",
"typescript",
"sourcemap",
"react",
"testing"
],
"author": "Kulshekhar Kabra <kulshekhar@users.noreply.github.com> (https://github.com/kulshekhar)",
"contributors": [
"Huafu Gandon <huafu.gandon@gmail.com> (https://github.com/huafu)",
"Anh Pham <anhpnnd@gmail.com> (https://github.com/ahnpnl)",
"Gustav Wengel <gustavwengel@gmail.com> (https://github.com/GeeWee)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kulshekhar/ts-jest/issues"
},
"homepage": "https://kulshekhar.github.io/ts-jest",
"dependencies": {
"bs-logger": "^0.2.6",
"fast-json-stable-stringify": "^2.1.0",
"handlebars": "^4.7.8",
"json5": "^2.2.3",
"lodash.memoize": "^4.1.2",
"make-error": "^1.3.6",
"semver": "^7.7.4",
"type-fest": "^4.41.0",
"yargs-parser": "^21.1.1"
},
"peerDependencies": {
"@babel/core": ">=7.0.0-beta.0 <8",
"@jest/transform": "^29.0.0 || ^30.0.0",
"@jest/types": "^29.0.0 || ^30.0.0",
"babel-jest": "^29.0.0 || ^30.0.0",
"jest": "^29.0.0 || ^30.0.0",
"jest-util": "^29.0.0 || ^30.0.0",
"typescript": ">=4.3 <6"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@jest/transform": {
"optional": true
},
"@jest/types": {
"optional": true
},
"babel-jest": {
"optional": true
},
"esbuild": {
"optional": true
},
"jest-util": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-angular": "^19.8.1",
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@jest/globals": "^30.3.0",
"@jest/transform": "^30.3.0",
"@jest/types": "^30.3.0",
"@types/babel__core": "^7.20.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.memoize": "^4.1.9",
"@types/lodash.set": "^4.3.9",
"@types/micromatch": "^4.0.10",
"@types/node": "20.19.37",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"@types/yargs-parser": "21.0.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"babel-jest": "^30.3.0",
"conventional-changelog-angular": "^8.3.0",
"conventional-changelog": "^7.2.0",
"esbuild": "~0.27.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-prettier": "^4.2.5",
"execa": "5.1.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"js-yaml": "^4.1.1",
"lint-staged": "^15.5.2",
"memfs": "^4.56.11",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
}
}