-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.43 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": "dashwallet",
"version": "0.7.1",
"description": "A more civilized wallet for a less civilized age",
"main": "index.js",
"bin": {},
"files": [
"index.js",
"lib/",
"dashwallet.js"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run jshint && npm run tsc",
"--------------": "-----------------------------------------",
"jshint": "npx -p [email protected] -- jshint -c ./.jshintrc ./*.js",
"prettier": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"reexport-types": "npx -p [email protected] -- reexport",
"tsc": "! npx -p [email protected] -- tsc -p ./jsconfig.json | grep '\\.js(\\d\\+,\\d\\+): error' | grep -v '\\<node_modules/'",
"-------------": "------------------------------------------",
"prepublish": "npm run reexport-types",
"test": "node ./tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashwallet.js.git"
},
"keywords": [
"dash",
"wallet",
"xpub",
"friends"
],
"author": "AJ ONeal <[email protected]> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashwallet.js/issues"
},
"homepage": "https://github.com/dashhive/dashwallet.js#readme",
"dependencies": {
"dashhd": "^3.3.0",
"dashphrase": "^1.4.0",
"dashsight": "^1.6.1",
"dashtx": "^0.14.1"
}
}