-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "jest-chain-transform",
"version": "0.0.8",
"description": "Support for multiple transform scripts of jest",
"main": "./dist/index.cjs",
"typings": "./dist/index.d.cts",
"type": "module",
"scripts": {
"test": "srcipt/test.sh",
"build": "tsup src/index.ts --format cjs --target node20 --dts"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anc95/jest-chain-transform.git"
},
"keywords": [
"jest",
"jest-transform",
"multiple-transform",
"jest-chain-transform"
],
"author": "anc95",
"license": "MIT",
"bugs": {
"url": "https://github.com/anc95/jest-chain-transform/issues"
},
"homepage": "https://github.com/anc95/jest-chain-transform#readme",
"peerDependencies": {
"@jest/transform": ">=27.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@swc/core": "^1.4.2",
"@types/jest": "^26.0.23",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.2",
"typescript": "^4.3.5"
}
}