-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
47
{
"name": "dashkeys-cli",
"version": "1.1.0",
"description": "Dash Keys CLI - generate, validate, and convert WIFs and PayAddress (Private Keys and Public Key Hashes)",
"main": "bin/dashkeys.js",
"bin": {
"dashkeys": "bin/dashkeys.js"
},
"files": [],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p [email protected] -- prettier -w '**/*.{html,js,md}'",
"lint": "npx -p [email protected] -- tsc -p ./jsconfig.json",
"test": "sh ./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashkeys-cli.js.git"
},
"keywords": [
"dash",
"digital",
"cash",
"dashcore",
"private",
"public",
"key",
"hash",
"wallet",
"address",
"wif",
"pkh",
"p2pkh",
"base58check"
],
"author": "AJ ONeal <[email protected]> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashkeys-cli.js/issues"
},
"homepage": "https://github.com/dashhive/dashkeys-cli.js#readme",
"dependencies": {
"@dashincubator/base58check": "^1.4.1",
"@dashincubator/secp256k1": "^1.7.1-5",
"dashkeys": "^1.1.5"
}
}