-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "wasm-json-toolkit",
"version": "0.2.6",
"description": "this convertes wasm binaries to json and json to wasm binaries",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node ./test/index.js"
},
"keywords": [
"wasm",
"cli"
],
"author": "mjbecze <mjbecze@gmail.com>",
"license": "MPL-2.0",
"dependencies": {
"buffer-pipe": "0.0.3",
"leb128": "0.0.4",
"safe-buffer": "^5.1.2"
},
"bin": {
"wasm2json": "./bin/wasm2json",
"json2wasm": "./bin/json2wasm"
},
"devDependencies": {
"coveralls": "^3.0.1",
"nyc": "12.0.2",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ewasm/wasm-json-toolkit.git"
},
"bugs": {
"url": "https://github.com/ewasm/wasm-json-toolkit/issues"
},
"homepage": "https://github.com/ewasm/wasm-json-toolkit",
"standard": {
"ignore": [
"test/wabt"
]
}
}