-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "blockstack-keychains",
"version": "0.0.8",
"description": "Library for creating elliptic curve keypairs and deriving child keys",
"main": "lib/index",
"scripts": {
"compile": "babel --presets es2015 src -d lib",
"test": "npm run compile; node lib/unitTests.js",
"prepublish": "npm run compile",
"release": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack-keychain-js"
},
"author": "Blockstack Inc.",
"license": "MIT",
"dependencies": {
"bigi": "^1.4.1",
"bip39": "^2.2.0",
"bitcoinjs-lib": "https://github.com/shea256/bitcoinjs-lib.git",
"bs58check": "^1.0.8",
"core-js": "^2.0.3",
"create-hmac": "^1.1.4",
"ecurve": "https://github.com/shea256/ecurve.git"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"tape": "^4.4.0"
},
"keywords": [
"key",
"keys",
"keychain",
"keychains",
"hd",
"hd key",
"hd keys",
"hierarchical",
"deterministic",
"hierarchical deterministic",
"hierarchical key",
"hierarchical keychain",
"hierarchical keychains",
"deterministic key",
"deterministic keychain",
"deterministic keychains",
"hierarchical deterministic key",
"hierarchical deterministic keychain",
"hierarchical deterministic keychains",
"bitcoin",
"bitcoin key",
"bitcoin keys",
"bitcoin address",
"bitcoin addresses",
"bip32",
"bip 32",
"bip 32 keys",
"bip32 keys",
"bip44",
"bip 44",
"bip 44 keys",
"bip44 keys",
"ecdsa",
"elliptic",
"elliptic curve",
"ecdsa key",
"ecdsa keys",
"ecdsa keychain",
"private",
"public",
"private key",
"private keys",
"public key",
"public keys",
"lockchain",
"keylocker",
"keychain manager",
"crypto",
"cryptography",
"bitcoin crypto",
"bitcoin cryptography"
]
}