forked from ethereumjs/helpeth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "helpeth",
"version": "0.4.1",
"description": "Help (with) Ethereum. Purists' commandline tool for key and transaction management.",
"bin": {
"helpeth": "./helpeth"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && tape ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/helpeth.git"
},
"keywords": [
"ethereum",
"wallet",
"keys",
"signing"
],
"author": "Alex Beregszaszi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereumjs/helpeth/issues"
},
"homepage": "https://github.com/ethereumjs/helpeth#readme",
"dependencies": {
"bip39": "^2.5.0",
"ethereumjs-icap": "^0.3.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-units": "^0.2.0",
"ethereumjs-util": "^6.0.0",
"ethereumjs-wallet": "^0.6.2",
"prompt-sync": "^4.1.5",
"rlp": "^2.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"standard": "^12.0.0",
"tape": "^4.9.1",
"tape-spawn": "^1.4.2"
},
"yargs": {
"parse-numbers": false
}
}