forked from aelbore/esbuild-jest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "esbuild-jest",
"version": "0.5.0",
"description": "Jest plugin to use esbuild for transformation",
"main": "esbuild-jest.js",
"module": "esbuild-jest.es.js",
"typings": "esbuild-jest.d.ts",
"scripts": {
"postinstall": "yarn build",
"build": "ts-node ./tools/build.ts",
"test": "jest --clearCache && jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aelbore/esbuild-jest.git"
},
"keywords": [
"esbuild",
"jest",
"test"
],
"author": "Arjay Elbore <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aelbore/esbuild-jest/issues"
},
"homepage": "https://github.com/aelbore/esbuild-jest#readme",
"peerDependencies": {
"esbuild": ">=0.9.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@swc/core": "^1.2.50",
"@types/jest": "^26.0.21",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"alias-hq": "^5.1.6",
"aria-build": "^0.7.3",
"aria-fs": "^0.7.3",
"esbuild": "^0.8.49",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"babel-jest": "^26.6.3"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}