-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "wabt",
"description": "JavaScript version of WABT, The WebAssembly Binary Toolkit.",
"version": "1.0.36",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/wabt.js.git"
},
"keywords": [
"webassembly",
"wasm"
],
"main": "index.js",
"typings": "index.d.ts",
"bin": {
"wasm2c": "bin/wasm2c",
"wasm2wat": "bin/wasm2wat",
"wat2wasm": "bin/wat2wasm",
"wasm-decompile": "bin/wasm-decompile",
"wasm-interp": "bin/wasm-interp",
"wasm-objdump": "bin/wasm-objdump",
"wasm-stats": "bin/wasm-stats",
"wasm-strip": "bin/wasm-strip",
"wasm-validate": "bin/wasm-validate"
},
"scripts": {
"asbuild:mvp": "asc tests/assembly/module.ts -t tests/assembly/module.wat -b tests/assembly/module.wasm --runtime none",
"asbuild:features": "asc tests/assembly/module-features.ts -t tests/assembly/module-features.wat -b tests/assembly/module-features.wasm --runtime none --enable simd",
"asbuild": "npm run asbuild:mvp && npm run asbuild:features",
"test": "node tests"
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"package-lock.json",
"bin/*",
"README.md"
],
"devDependencies": {
"assemblyscript": "^0.12.5",
"dateformat": "^3.0.3",
"semver": "^7.6.0",
"simple-git": "^3.24.0",
"tape": "^5.7.5"
}
}