-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
77 lines (77 loc) · 1.92 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
74
75
76
77
{
"name": "delegate-registry",
"version": "1.0.0",
"description": "Registry of delegates",
"homepage": "https://github.com/gnosis/delegate-registry/",
"license": "GPL-3.0",
"files": [
"contracts",
"test",
"build",
"networks.json"
],
"ethereum": {
"networks": [
1,
4,
42,
5,
100,
246,
73799
],
"contracts": [
"DelegateRegistry"
]
},
"scripts": {
"test": "run(){ run-with-testrpc -l 20000000 --noVMErrorsOnRPCResponse \"truffle test $@\"; }; run",
"compile": "run(){ truffle compile $@; }; run",
"coverage": "run(){ truffle run coverage $@; }; run",
"deploy": "run(){ truffle deploy --network=$@; }; run",
"do": "run(){ truffle exec --network=$@; }; run",
"prepare": "yarn truffle compile && yarn tnt iN",
"preversion": "node scripts/clean_build.js && yarn tnt cB"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/delegate-registry.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/gnosis/delegate-registry/issues"
},
"devDependencies": {
"@digix/tempo": "^0.2.0",
"@gnosis.pm/safe-contracts": "^1.2.0",
"@gnosis.pm/truffle-nice-tools": "^1.3.0",
"@truffle/contract": "^4.2.23",
"@truffle/hdwallet-provider": "^1.0.0",
"coveralls": "^3.1.0",
"dotenv": "^8.0.0",
"eth-lightwallet": "^4.0.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^6.2.0",
"ganache-cli": "6.3.0",
"ipfs-http-client": "^44.2.0",
"random-buffer": "*",
"run-with-testrpc": "^0.3.0",
"solidity-coverage": "^0.7.11",
"truffle": "^5.1.42",
"web3": "^1.2.6"
},
"dependencies": {
"openzeppelin-solidity": "^2.0.0",
"shelljs": "^0.8.3",
"solc": "0.7.2"
},
"resolutions": {
"bitcore-lib": "8.1.1",
"run-with-testrpc/ganache-cli": "6.3.0"
}
}