forked from miguelmota/eth-send
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.16 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
{
"name": "eth-send",
"version": "0.0.12",
"description": "Simple way to send ether.",
"main": "index.js",
"bin": {
"eth_send": "bin/eth_send",
"eth-send": "bin/eth_send"
},
"scripts": {
"test": "tape test/*.js",
"lint": "standard --fix index.js test/test.js example/example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/eth-send"
},
"bugs": {
"url": "https://github.com/miguelmota/eth-send/issues"
},
"homepage": "https://github.com/miguelmota/eth-send",
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/eth-send/blob/master/LICENSE"
},
"dependencies": {
"chalk": "2.4.2",
"ethereum-private-key-to-address": "0.0.2",
"meow": "5.0.0",
"truffle-privatekey-provider": "1.3.0",
"web3": "1.0.0-beta.55",
"web3-utils": "1.3.0"
},
"keywords": [
"ethereum",
"eth",
"ether",
"send",
"transfer",
"cli"
],
"devDependencies": {
"standard": "12.0.1",
"tape": "4.10.2",
"tape-await": "0.1.2"
}
}