-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "binaryen",
"description": "Browser & Node.js builds of Binaryen, a compiler infrastructure and toolchain library for WebAssembly.",
"version": "120.0.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/binaryen.js.git"
},
"keywords": [
"webassembly",
"wasm"
],
"type": "module",
"main": "index.js",
"typings": "index.d.ts",
"bin": {
"wasm-shell": "bin/wasm-shell",
"wasm-opt": "bin/wasm-opt",
"wasm-metadce": "bin/wasm-metadce",
"wasm2js": "bin/wasm2js",
"wasm-as": "bin/wasm-as",
"wasm-dis": "bin/wasm-dis",
"wasm-ctor-eval": "bin/wasm-ctor-eval",
"wasm-reduce": "bin/wasm-reduce",
"wasm-merge": "bin/wasm-merge"
},
"scripts": {
"readme": "doctoc README.md --github --title \"### Contents\"",
"check": "tsc index.d.ts --noEmit --strict --noImplicitAny --strictNullChecks --listFiles --diagnostics",
"test": "npm run check && node tests/sanity && node tests/example",
"bundle": "node scripts/bundle.js"
},
"files": [
"index.js",
"index.d.ts",
"package.json",
"package-lock.json",
"bin/*",
"README.md"
],
"devDependencies": {
"dateformat": "^5.0.3",
"doctoc": "^2.2.1",
"esbuild": "^0.13.15",
"semver": "^7.6.0",
"simple-git": "^3.24.0",
"typescript": "^4.9.5"
}
}