-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "esbuild-jest-cli",
"version": "1.0.0",
"description": "ESBuild wrapper to bundle Jest test projects",
"type": "module",
"main": "index.mjs",
"types": "index.d.mts",
"bin": {
"esbuild-jest": "build.mjs"
},
"exports": {
".": "./index.mjs",
"./package.json": "./package.json"
},
"files": [
"*.mjs",
"*.d.mts",
"utils/*.mjs"
],
"scripts": {
"test": ":"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/esbuild-jest-cli.git"
},
"keywords": [],
"author": "Yaroslav Serhieiev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix-incubator/esbuild-jest-cli/issues"
},
"homepage": "https://github.com/wix-incubator/esbuild-jest-cli#readme",
"dependencies": {
"bunyamin": "^1.6.3",
"find-up": "^7.0.0",
"import-from": "^4.0.0",
"lodash.merge": "^4.6.2",
"resolve-from": "^5.0.0"
},
"optionalDependencies": {
"bunyan": "^2.0.0",
"bunyan-debug-stream": "^3.1.0",
"cosmiconfig": "^9.0.0"
},
"peerDependencies": {
"esbuild": ">=0.17.4"
},
"devDependencies": {
"@jest/transform": "^29.6.3",
"@jest/types": "^29.6.3",
"esbuild": "^0.24.2"
}
}