-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.67 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
{
"name": "ewasm-evm",
"version": "1.0.0",
"description": "Implementation of Ethereum Virtual Machine compatible with EWASM API",
"main": "index.js",
"scripts": {
"build:rs": "sh ./build-rs.sh",
"build:js": "babel js --out-dir lib --source-maps true",
"build": "yarn build:rs && yarn build:js",
"start": "yarn build && node lib/index.js",
"lint:js": "eslint --ext .js ./js",
"lint:js-tests": "eslint --ext .js ./test",
"test:run-js": "node --require ./mocha-require.js ./node_modules/.bin/mocha --recursive",
"test:js": "yarn build:rs && yarn test:run-js",
"test:rs-u256": "(cd u256 && cargo +nightly test || exit)",
"test:rs-vm": "(cd vm && cargo +nightly test || exit)",
"test:rs": "yarn test:rs-u256 && yarn test:rs-vm",
"test": "yarn lint:js && yarn lint:js-tests && yarn test:rs && yarn test:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canufeel/ewasm-evm.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/canufeel/ewasm-evm/issues"
},
"homepage": "https://github.com/canufeel/ewasm-evm#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-node-strict": "^0.0.2",
"eslint-plugin-import": "^2.20.0",
"ethereumjs-testing": "git+https://github.com/ethereumjs/ethereumjs-testing.git#1.3.0",
"mocha": "^7.0.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3"
}
}