-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "lava-wallet",
"engines": {
"node": ">=8.9"
},
"version": "0.3.0",
"description": "An ERC20 token wallet that allows for offchain token withdrawl approvals",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"flatten": "truffle-flattener ./contracts/LavaWallet.sol > ./contracts/LavaWalletFlattened.sol",
"test": "truffle test",
"ganache": " ganache-cli --account=\"0xdca672104f895219692175d87b04483d31f53af8caad1d7348d269b35e21c3df,100000000000000000000000\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/admazzola/ethergoods.git"
},
"keywords": [
"ethereum"
],
"author": "admazzola",
"license": "MIT",
"bugs": {
"url": "https://github.com/admazzola/ethergoods/issues"
},
"homepage": "https://github.com/admazzola/ethergoods#readme",
"dependencies": {
"asyncawait": "^1.0.6",
"eth-sig-util": "^1.4.2",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.2.0",
"js-sha3": "^0.6.1",
"leftpad": "^0.0.1",
"web3": "^1.0.0-beta.36",
"web3-utils": "^1.0.0-beta.36"
},
"devDependencies": {
"ethers": "^4.0.7",
"truffle-flattener": "^1.2.9"
}
}