-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 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
38
39
40
41
{
"name": "asyncify-wasm",
"version": "1.2.1",
"description": "Standalone Asyncify helper for Binaryen",
"main": "dist/asyncify.cjs",
"module": "dist/asyncify.mjs",
"directories": {
"example": "example"
},
"scripts": {
"prepublishOnly": "rollup -c",
"example": "node --experimental-modules --no-warnings example/node/index.mjs",
"test": "node --experimental-modules --no-warnings test/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/asyncify.git"
},
"files": [
"dist/asyncify.*",
"index.d.ts"
],
"keywords": [
"asyncify",
"binaryen",
"webassembly",
"wasm",
"emscripten"
],
"author": "Ingvar Stepanyan <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/asyncify/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/asyncify#readme",
"devDependencies": {
"binaryen": "^101.0.0",
"rollup": "^1.29.0",
"rollup-plugin-terser": "^5.2.0"
}
}