-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 775 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 775 Bytes
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
{
"name": "bip38d",
"description": "Utility to decrypt a BIP38 (encrypted) private key",
"version": "2.0.0",
"main": "index.js",
"dependencies": {
"bip38": "^2.0.2",
"bitcore-lib": "^0.15.0",
"wif": "^2.0.6"
},
"devDependencies": {
"jest": "^22.4.2"
},
"bin": {
"bip38d": "index.js"
},
"scripts": {
"test": "NODE_ENV=test jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makevoid/bip38-decrypt.git"
},
"keywords": [
"bip38",
"bitcoin",
"decrypt",
"private-keys"
],
"author": "makevoid",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/makevoid/bip38-decrypt/issues"
},
"homepage": "https://github.com/makevoid/bip38-decrypt#readme"
}