forked from BitGo/eth-multisig-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.68 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
{
"name": "eth-multisig-v3",
"version": "1.0.0",
"description": "Ethereum multi signature wallet contract supporting single-tx execute and confirm with multiple owners",
"author": "Ben Chan",
"license": "ISC",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"truffle-testrpc": "node ./testrpc/run.js",
"mocha-test": "./node_modules/mocha/bin/mocha mocha-test",
"truffle-test": "./node_modules/truffle/build/cli.bundled.js test",
"coverage": "node --max-old-space-size=8096 ./node_modules/truffle/build/cli.bundled.js run coverage --network development",
"compile": "./node_modules/truffle/build/cli.bundled.js compile",
"solhint": "./node_modules/.bin/solhint --fix 'contracts/**/*.sol'",
"prettier": "./node_modules/.bin/prettier --config .prettierrc --write './**/*.js'",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/*.sol",
"lint": "npm run prettier && npm run solhint"
},
"keywords": [
"multi-sig",
"wallet",
"ethereum"
],
"dependencies": {
"@uniswap/lib": "^4.0.1-alpha",
"bignumber.js": "^9.0.0",
"bluebird": "^3.3.5",
"bn": "^1.0.1",
"bn.js": "^4.11.3",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.4",
"ganache-cli": "^6.12.2",
"lodash": "^4.12.0",
"mocha": "^4.1.0",
"q": "^1.5.1",
"should": "^8.3.1",
"solc": "0.7.5",
"solhint": "^3.2.0",
"truffle": "^5.1.57",
"truffle-assertions": "^0.9.2"
},
"devDependencies": {
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.58",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.15",
"truffle-flattener": "^1.5.0"
}
}