-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "multi-sig-wallet",
"version": "1.0.0",
"description": "A 'multi signature wallet' which, through a Solidity smart contract",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test --reporter eth-gas-reporter",
"coverage": "truffle run coverage && cat coverage/lcov.info | coveralls",
"lint": "solhint --max-warnings 0 \"contracts/**/*.sol\" -f stylish"
},
"keywords": [
"multisig",
"wallet",
"solidity"
],
"author": "Esteban Hugo Somma",
"license": "MIT",
"repository": "github:ehsomma/multisigwallet",
"bugs": {
"url": "https://github.com/ehsomma/multisigwallet/issues"
},
"homepage": "https://github.com/ehsomma/multisigwallet",
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.3.1",
"coveralls": "^3.1.1",
"eth-gas-reporter": "^0.2.24",
"solidity-coverage": "^0.7.17",
"truffle-assertions": "^0.9.2"
}
}