-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
28 lines (28 loc) · 936 Bytes
/
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
{
"name": "@swc/plugin-jest",
"version": "7.0.0",
"description": "SWC plugin for jest",
"main": "swc_plugin_jest.wasm",
"scripts": {
"prepack": "npm run build && vitest run",
"build": "cargo build --release -p swc_plugin_jest --target wasm32-wasi && cp ../../target/wasm32-wasi/release/swc_plugin_jest.wasm .",
"build:debug": "cargo build -p swc_plugin_jest --target wasm32-wasi && cp ../../target/wasm32-wasi/debug/swc_plugin_jest.wasm .",
"test": "npm run build:debug && vitest run"
},
"homepage": "https://swc.rs",
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/plugins.git",
"directory": "packages/jest"
},
"bugs": {
"url": "https://github.com/swc-project/plugins/issues"
},
"author": "강동윤 <[email protected]>",
"keywords": [],
"license": "Apache-2.0",
"preferUnplugged": true,
"dependencies": {
"@swc/counter": "^0.1.3"
}
}