forked from second-state/wasmedge-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "wasmedge-core",
"version": "0.9.0",
"description": "Second State WebAssembly VM for Node.js Addon",
"keywords": [
"wasm",
"rust",
"webassembly",
"wasi",
"runtime",
"serverless",
"fucntion-as-a-service"
],
"repository": "https://github.com/second-state/wasmedge-core.git",
"license": "Apache-2.0",
"main": "index.js",
"binary": {
"module_name": "wasmedge",
"module_path": "./lib/binding/{platform}-{arch}/",
"host": "https://github.com/second-state/wasmedge-core/releases/download/",
"remote_path": "{version}",
"package_name": "{module_name}-{platform}-{arch}.tar.gz"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"node-addon-api": "^3.0.0",
"npm": "^7.11.1"
},
"devDependencies": {
"mocha": "^8.1.3",
"node-gyp-cache": "^0.2.1"
},
"scripts": {
"test": "cd test && ./test.sh",
"preinstall": "./scripts/preinstall.sh",
"postinstall": "./scripts/postinstall.sh",
"install": "node-pre-gyp install --fallback-to-build",
"release": "node-pre-gyp install --fallback-to-build --update-binary"
}
}