-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 KB
/
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": "dashhd-cli",
"version": "1.0.2",
"description": "Browser, Node, Bundler, and CLI compatible Dash HD Wallet tools",
"main": "./bin/dashhd.js",
"bin": {
"dashhd": "./bin/dashhd.js"
},
"files": [
"bin/",
"jsconfig.json"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"lint": "npx -p [email protected] -- tsc -p ./jsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashhd-cli.js.git"
},
"keywords": [
"bip39",
"bip44",
"seed",
"wallet",
"hd",
"dash"
],
"author": "AJ ONeal <[email protected]> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashhd-cli.js/issues"
},
"homepage": "https://github.com/dashhive/dashhd-cli.js#readme",
"dependencies": {
"@dashincubator/base58check": "^1.3.1",
"@dashincubator/ripemd160": "^2.3.0",
"@dashincubator/secp256k1": "^1.7.1-5",
"dashhd": "^3.0.4",
"dashkeys": "^1.0.0",
"dashphrase": "^1.3.7",
"qrcode-svg": "^1.1.0"
}
}