forked from leapdao/solEVM-enforcer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
{
"name": "solEVM-onther",
"version": "0.1.0",
"description": "The EVM Enforcer is a computation verification engine that allows on-chain enforcement of off-chain EVM execution.",
"author": "LeapDAO",
"license": "MPL-2.0",
"keywords": [
"evm",
"solidity",
"truebit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/leapdao/solEVM-enforcer.git"
},
"main": "utils/index.js",
"scripts": {
"test": "yarn test:contracts && yarn test:utils",
"test:contracts": "yarn compile:contracts && scripts/test.sh test/contracts/*",
"test:utils": "mocha test/utils/",
"test:utils:stepper": "mocha test/utils/stepper.js",
"test:utils:call": "mocha test/utils/stepper.call.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solhint contracts/**/*{.sol,.slb}",
"lint:all": "yarn lint && yarn lint:sol",
"lint:all:fix": "yarn lint:fix && yarn lint:sol",
"compile:contracts": "scripts/compile.js",
"coverage": "scripts/start_geth.sh && RPC_PORT=8333 yarn develatus-apparatus"
},
"devDependencies": {
"develatus-apparatus": "https://github.com/pinkiebell/develatus-apparatus.git#0.1.1",
"eslint": "=6.0.1",
"ganache-cli": "=6.4.0",
"loadash": "^1.0.0",
"mocha": "=6.1.4",
"solc": "=0.5.2",
"solhint": "=2.1.0"
},
"dependencies": {
"ethereumjs-util": "=6.1.0",
"ethereumjs-vm": "https://github.com/Onther-Tech/ethereumjs-vm.git",
"ethers": "=4.0.33",
"keccak": "=2.0.0",
"merkle-patricia-tree": "^3.0.0",
"rustbn.js": "=0.2.0",
"truffle": "^5.0.38",
"web3": "^1.2.6"
}
}