forked from Colored-Coins/hdwallet
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "digiasset-hdwallet",
"version": "0.8.2",
"description": "BIP32 & BIP44 Hierarchical Deterministic Wallet.",
"main": "src/hdwallet.js",
"dependencies": {
"async": "^1.3.0",
"bigi": "^1.4.1",
"bip38": "1.4.0",
"bip39": "^2.2.0",
"bitcoinjs-lib": "git://github.com/DigiByte-Core/bitcoinjs-lib.git#79f4a69de6e9112775cf24e91cae3df55c7ba114",
"blockexplorer-rpc": "0.0.4",
"coinkey": "^1.4.0",
"coinstring": "^2.3.0",
"crypto": "0.0.3",
"crypto-hashing": "^0.3.1",
"data-storage": "~0.0.4",
"jsonfile": "^2.2.1",
"lodash": "^4.16.4",
"path-extra": "^1.0.3",
"redis": "^0.12.1"
},
"devDependencies": {
"chai": "^3.3.0",
"chai-string": "^1.1.6",
"mocha": "^2.2.4"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/DigiByte-Core/digiasset-hdwallet.git"
},
"keywords": [
"hdwallet",
"bip32",
"bip44",
"bitcoin",
"digiassets",
"digibyte"
],
"contributors": [
{
"name": "Eliran Zach",
"email": "thehobbit85@gmail.com"
},
{
"name": "bejavu",
"email": "tal@colu.com"
},
{
"name": "oleiba",
"email": "oded@colu.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DigiByte-Core/digiasset-hdwallet/issues"
},
"homepage": "https://github.com/DigiByte-Core/digiasset-hdwallet"
}