-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "dapper-sc-wallet",
"version": "1.0.0",
"description": "Where the dapper smart contract wallet lives",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^3.5.1",
"bn": "^1.0.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"console.table": "^0.10.0",
"dotenv": "^6.1.0",
"ethereumjs-abi": "^0.6.6",
"ethereumjs-util": "^6.1.0",
"lodash": "^4.17.10",
"openzeppelin-solidity": "^2.1.3",
"should": "^13.2.1",
"solc": "^0.5.9",
"truffle": "^5.0.8",
"truffle-hdwallet-provider": "github:dapperlabs/truffle-hdwallet-provider#v1.0.1",
"web3": "1.0.0-beta.55"
},
"devDependencies": {
"solidity-coverage": "^0.5.11"
},
"scripts": {
"test": "./node_modules/.bin/truffle test",
"truffle": "truffle",
"build": "./node_modules/.bin/truffle compile && node ./scripts/generate-wallet-bytecode-contract.js > ./contracts/WalletFactory/FullWalletByteCode.sol",
"deploy": "./node_modules/.bin/truffle migrate -f 2 --network rinkeby_local",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dapperlabs/dapper-sc-wallet.git"
},
"keywords": [],
"author": "Christopher Scott",
"license": "ISC",
"bugs": {
"url": "https://github.com/dapperlabs/dapper-sc-wallet/issues"
},
"homepage": "https://github.com/dapperlabs/dapper-sc-wallet#readme"
}