-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "crowdnode",
"version": "1.7.0",
"description": "Manage your stake in Đash with the CrowdNode Blockchain API",
"main": "./index.js",
"browser": {
"./lib/request.js": "./lib/request-browser.js",
"./lib/dashcore.js": "./lib/browser-dashcore.js"
},
"bin": {
"crowdnode": "./bin/crowdnode.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm version -m \"chore(release): bump to v%s\""
},
"files": [
"bin",
"crowdnode.js",
"dashapi.js",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/crowdnode.js.git"
},
"keywords": [
"Dash",
"CrowdNode",
"Blockchain",
"Stake",
"Staking"
],
"author": "AJ ONeal <[email protected]> (https://therootcompany.com)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/crowdnode.js/issues"
},
"homepage": "https://github.com/dashhive/crowdnode.js#readme",
"dependencies": {
"@dashevo/dashcore-lib": "^0.19.41",
"dashsight": "^1.1.1"
},
"optionalDependencies": {
"@root/request": "^1.9.1",
"dotenv": "^16.0.1",
"qrcode-svg": "^1.1.0",
"tough-cookie": "^4.0.0",
"ws": "^8.8.0"
}
}