-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 2.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "plasma-evm-contracts",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"console": "truffle console",
"console:faraday": "truffle console --network faraday",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"run:testrpc": "bash ./run.testrpc.sh",
"test": "scripts/test.sh ./test/RootChain.test.behavior.js",
"test:logtx": "LOGTX=true npm run test",
"test:verbose": "VERBOSE=true npm run test",
"test:verbose:logtx": "VERBOSE=true LOGTX=true npm run test",
"test:stake": "mocha --exit --bail --recursive test/stake --timeout 600000",
"test:stake:compile": "npm run compile && npm run test:stake"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^2.5.1",
"axios": "^0.19.1",
"chai-bytes": "^0.1.1",
"hardhat": "^2.3.0",
"rlp": "^2.1.0"
},
"devDependencies": {
"@makerdao/currency": "^0.9.6",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/test-environment": "^0.1.1",
"@openzeppelin/test-helpers": "^0.5.4",
"chai": "^4.2.0",
"chai-bn": "^0.1.1",
"coinage-token": "0.0.8-rc.1",
"coveralls": "^3.0.1",
"dotenv": "^9.0.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eth-block-tracker": "^4.4.2",
"eth-gas-reporter": "^0.1.12",
"ethereum-waffle": "^3.3.0",
"ethereumjs-abi": "^0.6.5",
"ethjs-abi": "^0.2.1",
"ethlint": "^1.2.5",
"ganache-cli": "^6.7.0",
"husky": "^6.0.0",
"lodash": "^4.17.15",
"mocha": "^7.0.0",
"openzeppelin-test-helpers": "^0.4.2",
"solidity-coverage": "^0.5.4",
"solidity-util": "github:willitscale/solidity-util",
"solium": "^1.2.4",
"truffle": "^5.1.20",
"truffle-privatekey-provider": "^1.5.0",
"web3-utils": "^1.2.1"
}
}