-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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": "dashtx",
"version": "0.20.3",
"description": "Create DASH Transactions with Vanilla JS (0 deps, cross-platform)",
"main": "dashtx.js",
"module": "dashtx.mjs",
"type": "commonjs",
"exports": {
".": {
"require": "./dashtx.js",
"import": "./dashtx.mjs",
"default": "./dashtx.js"
}
},
"files": [
"dashtx.js",
"dashtx.mjs"
],
"browser": {
"crypto": false
},
"bin": {
"dashtx-inspect": "./bin/inspect.js"
},
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run jshint && npm run tsc",
"prepublish": "npx -p [email protected] -- reexport",
"test": "node ./tests/",
"--------------": "-----------------------------------------------",
"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/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashtx.js.git"
},
"keywords": [],
"author": "AJ ONeal <[email protected]> (https://throotcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashtx.js/issues"
},
"homepage": "https://github.com/dashhive/dashtx.js#readme",
"devDependencies": {
"@dashincubator/secp256k1": "^1.7.1-5",
"@types/node": "^20.12.7",
"dashkeys": "^1.1.3",
"zora": "^5.2.0"
}
}