-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.11 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
51
{
"name": "wasm-metering",
"version": "0.2.1",
"description": "injects metering into webassembly binaries",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node --harmony ./test/index.js"
},
"bin": {
"wasm-meter": "./bin/wasm-meter"
},
"author": "mjbecze <[email protected]>",
"contributors": [
"Alex Beregszaszi <[email protected]>"
],
"license": "MPL-2.0",
"dependencies": {
"leb128": "^0.0.4",
"wasm-json-toolkit": "0.3.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^11.6.0",
"standard": "^11.0.0",
"tape": "^4.9.0"
},
"keywords": [
"wasm",
"metering",
"webassembly"
],
"repository": {
"type": "git",
"url": "https://github.com/ewasm/wasm-metering.git"
},
"bugs": {
"url": "https://github.com/ewasm/wasm-metering/issues"
},
"homepage": "https://github.com/ewasm/wasm-metering",
"standard": {
"ignore": [
"test/wabt"
],
"globals": [
"WebAssembly"
]
}
}