-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 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
{
"name": "@cloudventure/jest-transformer-esbuild",
"description": "Jest transformer using esbuild",
"version": "1.0.14",
"license": "MIT",
"scripts": {
"prepare": "esbuild --platform=node --target=node16 --outfile=build.mjs --format=esm --log-level=error build.ts",
"prebuild": "yarn prepare",
"build": "node build.mjs",
"test": "yarn jest",
"test:esm": "NODE_OPTIONS=--experimental-vm-modules yarn jest --config jest.config.esm.json"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudventure-io/jest-transformer-esbuild.git"
},
"author": "Vahe Sahakyan <[email protected]>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"dependencies": {
"babel-plugin-jest-hoist": "28 || 29",
"esbuild": "0.14 || 0.15 || 0.16 || 0.17 || 0.18 || 0.19"
},
"devDependencies": {
"@types/jest": "28 || 29",
"jest": "28 || 29",
"typescript": "^5"
},
"peerDependencies": {
"jest": "28 || 29"
},
"keywords": [
"jest",
"esbuild",
"transformer"
]
}