forked from safe-global/safe-modules
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "@gnosis.pm/safe-allowance-module",
"version": "1.0.0",
"description": "Allowance module for the gnosis safe",
"main": "index.js",
"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 --skip-dry-run --network=$@; }; run",
"verify": "run(){ node scripts/clean_build.js && node scripts/generate_meta.js && yarn truffle exec scripts/verify_deployment.js --network=$@; }; run",
"do": "run(){ truffle exec --network=$@; }; run",
"prepare": "yarn truffle compile && yarn tnt iN",
"preversion": "node scripts/clean_build.js && yarn tnt cB"
},
"ethereum": {
"networks": [
1,
4,
42,
5,
56,
100,
137,
246,
43114,
73799
],
"contracts": [
"AllowanceModule"
]
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@gnosis.pm/truffle-nice-tools": "^1.3.0",
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"@truffle/hdwallet-provider": "^1.0.0",
"eth-lightwallet": "^4.0.0",
"ethereumjs-abi": "^0.6.8",
"ganache-cli": "6.11.0",
"ipfs-http-client": "^44.2.0",
"run-with-testrpc": "^0.3.0",
"web3": "^1.2.6"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "^1.2.0",
"@gnosis.pm/safe-singleton-factory": "^1.0.9",
"@gnosis.pm/singleton-deployer-safe-factory": "^1.0.0",
"@gnosis.pm/singleton-deployer-truffle": "^2.0.0",
"@truffle/contract": "^4.2.23",
"dotenv": "^8.0.0",
"solc": "0.7.4",
"truffle": "^5.1.50"
},
"resolutions": {
"bitcore-lib": "8.1.1",
"run-with-testrpc/ganache-cli": "6.11.0"
}
}