-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
49
50
51
52
53
54
{
"name": "dashhd",
"version": "3.3.3",
"description": "Manage HD Keys from HD Wallet Seed and Extended (xprv, xpub) Key Paths. Part of $DASH Tools.",
"main": "dashhd.js",
"browser": {
"crypto": false
},
"repository": {
"type": "git",
"url": "git://github.com/dashhive/dashhd.js"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"DASH",
"hd",
"wallet",
"key",
"keys",
"path",
"bip32",
"bip44",
"hierarchical",
"deterministic",
"crypto",
"$DASH",
"Tools"
],
"bugs": {
"url": "https://github.com/dashhive/dashhd.js/issues"
},
"homepage": "https://github.com/dashhive/dashhd.js",
"files": [
"dashhd.js",
"jsconfig.json"
],
"devDependencies": {
"@dashincubator/secp256k1": "^1.7.1-5",
"dashkeys": "^1.1.3",
"dashphrase": "^1.4.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "0.0.1"
},
"scripts": {
"lint": "npx -p typescript@4.x -- tsc -p ./jsconfig.json",
"browser-test": "npx mochify@6 --wd -R spec",
"test": "mocha",
"unit": "mocha",
"coverage": "npx istanbul@0.4 cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && npx coveralls@3 < coverage/lcov.info",
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p prettier@2.x -- prettier -w '**/*.{js,md}'"
}
}