forked from trapp/ethereum-bip44
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "@owstack/ethereum-bip44",
"version": "1.0.0",
"description": "bip 44 hierarchical deterministic address generation for ethereum",
"main": "es5/index.js",
"author": "Timon Rapp <timon@zaeda.net>",
"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": {
"@owstack/key-lib": "^0.0.37",
"ethereumjs-util": "^6.1.0",
"elliptic": "6.2.3",
"assert": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4"
},
"files": [
"README.md",
"src/index.js",
"es5/index.js"
]
}