-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
39 lines (39 loc) · 992 Bytes
/
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
{
"name": "ethereum-bip44",
"version": "2.1.3",
"description": "bip 44 hierarchical deterministic address generation for ethereum",
"main": "es5/index.js",
"author": "Timon Rapp <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/trapp/ethereum-bip44.git"
},
"bugs": {
"url": "https://github.com/trapp/ethereum-bip44/issues"
},
"homepage": "https://github.com/trapp/ethereum-bip44",
"license": "MPL-2.0",
"keywords": [
"ethereum",
"bip44",
"bip32",
"hd"
],
"scripts": {
"prepublish": "./node_modules/.bin/babel src --out-dir es5 --stage 0"
},
"dependencies": {
"bitcore-lib": "0.13.13",
"ethereumjs-util": "4.0.1",
"elliptic": "6.2.3",
"assert": "^1.3.0"
},
"devDependencies": {
"babel": "^5.8.14"
},
"files": [
"README.md",
"src/index.js",
"es5/index.js"
]
}