-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
39 lines (39 loc) · 887 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": "stellar-hd-wallet",
"version": "0.0.10",
"description": "Key derivation for Stellar (SEP-0005)",
"author": "Chris Hatch",
"repository": "chatch/stellar-hd-wallet",
"license": "Apache-2.0",
"main": "lib/stellar-hd-wallet.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha --require babel-register",
"prepublish": "./node_modules/.bin/babel src --out-dir lib"
},
"keywords": [
"SEP-0005",
"SLIP-0010",
"BIP-0039",
"BIP-0044",
"ed25519",
"stellar",
"cryptocurrencies",
"keys"
],
"dependencies": {
"bip39": "^2.5.0",
"create-hmac": "^1.1.7",
"lodash": "^4.17.11",
"stellar-base": "^0.13.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"mocha": "^4.0.1"
}
}