forked from safe-global/safe-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "@gnosis.pm/safe-modules",
"version": "0.1.0",
"description": "Modules for the Gnosis Safe contracts",
"license": "GPL-3.0",
"main": "index.js",
"files": [
"contracts",
"test",
"build"
],
"scripts": {
"preversion": "npm run restore",
"restore": "rm -rf build && npx truffle compile && tnt iN && tnt cB",
"test-norpc": "truffle test",
"test": "run-with-testrpc -l 20000000 --noVMErrorsOnRPCResponse true 'truffle test'",
"install": "cd $INIT_CWD && npm explore truffle -- npm install [email protected]",
"lint": "./node_modules/solium/bin/solium.js -d contracts",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/safe-modules.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/gnosis/safe-modules/issues"
},
"resolutions": { "bitcore-lib": "0.15.0" },
"devDependencies": {
"@digix/tempo": "^0.2.0",
"@gnosis.pm/truffle-nice-tools": "^1.3.0",
"@gnosis.pm/mock-contract": "^3.0.0",
"bignumber.js": "^7.1.0",
"eth-lightwallet": "^3.0.1",
"ethereumjs-abi": "^0.6.5",
"ganache-cli": "6.1.7",
"random-buffer": "*",
"run-with-testrpc": "0.3.0",
"solidity-coverage": "^0.4.15",
"truffle": "4.1.15",
"web3": "^0.20.6",
"solium": "^1.2.1"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "^0.1.0",
"@gnosis.pm/util-contracts": "^2.0.0",
"dotenv": "^6.2.0",
"openzeppelin-solidity": "^2.0.0"
}
}