This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
60 lines (60 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
{
"name": "evm2wasm",
"version": "0.0.0",
"description": "This is a JS protope of a EVM to eWASM transcompiler",
"main": "index.js",
"scripts": {
"vmTests": "node --expose-wasm --harmony ./tests/runVmTests.js",
"lint": "standard",
"build:validate": "npm run build && npm run build:docs && git diff --exit-code docs/ wasm/",
"build": "node ./wasm/generateInterface.js",
"build:docs": "documentation build -f md ./index.js > ./docs/index.md"
},
"bin": {
"evm2wasm": "bin/evm2wasm.js"
},
"author": "mjbecze <mjbecze@gmail.com>",
"license": "MPL-2.0",
"devDependencies": {
"async": "^2.6.0",
"bn.js": "^4.11.8",
"documentation": "^7.0.0",
"ethereumjs-testing": "https://github.com/ethereumjs/ethereumjs-testing",
"ethereumjs-vm": "^2.3.3",
"minimist": "^1.2.0",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ewasm/evm2wasm.git"
},
"bugs": {
"url": "https://github.com/ewasm/evm2wasm/issues"
},
"homepage": "https://github.com/ewasm/evm2wasm",
"keywords": [
"ethereum",
"webassembly",
"wasm",
"ewasm",
"transcompiler"
],
"dependencies": {
"buffer-to-uint8array": "^1.1.0",
"eslint": "^4.19.1",
"ethereumjs-block": "^1.2.2",
"ethereumjs-util": "^5.1.5",
"ewasm-kernel": "git+https://github.com/ewasm/ewasm-kernel.git",
"loglevel": "^1.6.0",
"merkle-trie": "0.0.0",
"readable-stream": "^2.3.5",
"wabt": "^1.0.0"
},
"standard": {
"ignore": [
"/tools/",
"/wasm/"
]
}
}