-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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
48
{
"name": "dashkeys",
"version": "1.1.5",
"description": "Generate, validate, create, and convert WIFs and PayAddress.",
"main": "dashkeys.js",
"browser": {
"crypto": false
},
"bin": {},
"files": [
"*.js",
"lib/"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p prettier@3.x -- prettier -w '**/*.{html,js,md}'",
"lint": "npx -p typescript@5.x -- tsc -p ./jsconfig.json",
"test": "node ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashkeys.js.git"
},
"keywords": [
"dash",
"digital",
"cash",
"dashcore",
"private",
"key",
"public",
"wallet",
"address",
"p2pkh",
"base58check"
],
"author": "AJ ONeal <aj@therootcompany.com> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashkeys.js/issues"
},
"homepage": "https://github.com/dashhive/dashkeys.js#readme",
"devDependencies": {
"@dashincubator/base58check": "^1.4.1",
"@dashincubator/secp256k1": "^1.7.1-5",
"@types/node": "^20.12.7"
}
}