-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "simple-shared-wallet",
"version": "1.0.0",
"description": "Simple shared wallet contract enables you to store ERC20 tokens and Ethereum which can be accessed by several people.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"solhint": "solhint \"contracts/**/*.sol\"",
"solium": "solium -d contracts",
"coverage": "./node_modules/.bin/solidity-coverage",
"pre-commit": "sol-flattener ./contracts/SimpleToken.sol ./flattened/SimpleToken.sol .,../node_modules && sol-flattener ./contracts/SimpleWallet.sol ./flattened/SimpleWallet.sol .,../node_modules && rm -r ./build && rm -r ./docs && truffle compile && solidoc"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CYBRToken/simple-shared-wallet.git"
},
"keywords": [
"erc20",
"ethereum",
"contract",
"smart contract",
"wallet",
"erc721",
"shared",
"shared wallet",
"multi-sig"
],
"author": "Binod Nirvan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CYBRToken/simple-shared-wallet/issues"
},
"homepage": "https://github.com/CYBRToken/simple-shared-wallet#readme",
"dependencies": {
"bignumber.js": "^9.0.0",
"openzeppelin-solidity": "2.3.0",
"pify": "^4.0.1",
"web3": "^0.20.6"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"husky": "^2.4.1",
"solidity-coverage": "^0.5.11"
}
}