-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "send-ether",
"version": "2.3.0",
"description": "Simple CLI tool (and library) to send ether with a private key, mnemonic, or keystore.",
"main": "src/lib.js",
"repository": {
"type": "git",
"url": "https://github.com/merklejerk/send-ether.git"
},
"bugs": {
"url": "https://github.com/merklejerk/send-ether/issues"
},
"author": "Lawrence Forman <me@merklejerk.com>",
"license": "Apache-2.0",
"scripts": {
"start": "node src/send-ether.js",
"test": "mocha --timeout 60000 ./test/*.js"
},
"bin": {
"send-ether": "./src/send-ether.js"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"colors": "^1.3.1",
"commander": "^2.16.0",
"ethereumjs-util": "^6.2.0",
"ethereumjs-wallet": "^0.6.3",
"flex-ether": "^1.6.3",
"lodash": "^4.17.15",
"mz": "^2.7.0",
"prompt": "^1.0.0"
},
"devDependencies": {
"ganache-cli": "^6.7.0",
"mocha": "^6.2.2"
},
"keywords": [
"ethereum",
"cli",
"library",
"ether",
"transfer",
"send",
"self-signed",
"private key",
"wallet",
"es2017",
"ens"
]
}