forked from stacks-archive/keychain-manager-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 959 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
40
41
42
43
44
45
46
{
"name": "keychain-manager",
"version": "1.4.1",
"description": "A key system based around accounts that each have hierarchical deterministic (HD) keychains with ECDSA public/private keypairs (the ones Bitcoin uses).",
"main": "index.js",
"scripts": {
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/blockstack/keychain-manager.git"
},
"keywords": [
"key",
"keychain",
"hd",
"hierarchical",
"deterministic",
"bitcoin",
"ecdsa",
"crypto",
"cryptography",
"private",
"public",
"lockchain",
"keylocker",
"bip32"
],
"author": {
"name": "Halfmoon Labs Inc."
},
"license": "MIT",
"homepage": "https://github.com/blockstack/keychain-manager",
"dependencies": {
"bitcore-lib": "^0.13.11",
"bn.js": "^3.1.1"
},
"devDependencies": {
"tape": "^4.0.1"
},
"files": [
"lib/",
"*.js",
"README.md"
]
}