-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "dashgov",
"version": "1.0.0",
"description": "Utility functions for Dash governance on the blockchain.",
"main": "dashgov.js",
"type": "module",
"files": [
"./dashgov.js"
],
"exports": {
".": "./dashgov.js",
"./*": "./*"
},
"imports": {
"dashgov": "./dashgov.js"
},
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run jshint && npm run tsc",
"test": "node ./tests/",
"--------": "-------------------------------------------------",
"jshint": "npx -p [email protected] -- jshint -c ./.jshintrc ./*.js",
"prettier": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"tsc": "! npx -p [email protected] -- tsc -p ./jsconfig.json | grep '\\.js(\\d\\+,\\d\\+): error' | grep -v '\\<node_modules/'",
"---------": "------------------------------------------------",
"reexport-types": "npx -p [email protected] -- reexport",
"prepublish": "npm run reexport-types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/DashGov.js.git"
},
"keywords": [
"DASH",
"proposal",
"governance",
"gobject"
],
"author": "AJ ONeal <[email protected]> (https://therootcompany.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/DashGov.js/issues"
},
"homepage": "https://github.com/dashhive/DashGov.js#readme",
"devDependencies": {
"@dashincubator/secp256k1": "^1.7.1-5",
"@types/node": "^22.1.0",
"dashkeys": "^1.1.5",
"dashtx": "^0.20.1",
"dotenv": "^16.4.5"
}
}