UNPKG

@ark-us/evm2wasm

Version:

This is a JS protope of a EVM to eWASM transcompiler

68 lines (67 loc) 1.87 kB
{ "name": "@ark-us/evm2wasm", "version": "0.0.12", "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", "clean": "rm -rf dist", "rollup": "yarn clean && rollup -c", "rollup-dev": "yarn clean && rollup -c -w" }, "bin": { "evm2wasm": "bin/evm2wasm.js" }, "author": "mjbecze <mjbecze@gmail.com>", "license": "MPL-2.0", "devDependencies": { "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "async": "^2.6.0", "bn.js": "^4.11.8", "documentation": "^7.0.0", "ethereumjs-block": "^1.2.2", "ethereumjs-testing": "git+https://github.com/ethereumjs/ethereumjs-testing.git", "ethereumjs-vm": "^2.3.3", "ewasm-kernel": "git+https://github.com/ewasm/ewasm-kernel.git", "minimist": "^1.2.0", "rollup": "^3.12.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-util": "^5.1.5" }, "standard": { "ignore": [ "/tools/", "/wasm/" ] }, "publishConfig": { "access": "public" } }