This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
forked from safe-global/safe-smart-account
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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-contracts",
"version": "1.1.1",
"description": "Ethereum multisig contract",
"homepage": "https://github.com/gnosis/safe-contracts/",
"license": "GPL-3.0",
"main": "index.js",
"files": [
"contracts",
"test",
".openzeppelin/*.json",
"build"
],
"scripts": {
"test-norpc": "truffle test",
"test": "run(){ run-with-testrpc -l 20000000 --noVMErrorsOnRPCResponse \"truffle test $@\"; }; run",
"preversion": "npm run restore",
"truffle-oz-merge": "node scripts/merge_oz.js",
"deploy-oz": "node scripts/deploy_safe_contracts_oz.js",
"restore": "rm -rf build && npx truffle compile && npm run truffle-oz-merge && npx tnt cB",
"install": "cd $INIT_CWD && npm explore truffle -- npm install solc@0.5.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnosis/gnosis-safe.git"
},
"keywords": [
"Ethereum",
"Wallet",
"Safe"
],
"author": "stefan@gnosis.pm",
"bugs": {
"url": "https://github.com/gnosis/gnosis-safe/issues"
},
"devDependencies": {
"@digix/tempo": "^0.2.0",
"@gnosis.pm/mock-contract": "github:gnosis/mock-contract#sol_0_5_0",
"@gnosis.pm/truffle-nice-tools": "^1.3.0",
"@openzeppelin/cli": "^2.5.1",
"@openzeppelin/upgrades": "^2.5.1",
"bignumber.js": "github:frozeman/bignumber.js-nolookahead",
"eth-lightwallet": "^3.0.1",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "^6.0.0",
"ganache-cli": "^6.3.0",
"random-buffer": "*",
"run-with-testrpc": "^0.3.0",
"solidity-coverage": "^0.4.2",
"truffle": "^4.1.14",
"web3": "0.20.6"
},
"dependencies": {
"dotenv": "^8.0.0",
"openzeppelin-solidity": "^2.0.0",
"shelljs": "^0.8.3",
"solc": "^0.5.9",
"truffle-hdwallet-provider": "0.0.7-beta.1"
}
}