-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "dashsight",
"version": "1.6.1",
"description": "SDK for Dash's flavor of the Insight API",
"main": "index.js",
"browser": {
"./ws/index.js": "./dashsocket.js",
"crypto": false
},
"bin": {
"dashsight-balance": "bin/balance.js",
"dashsight-instantsend": "bin/instantsend.js",
"dashsight-tx": "bin/tx.js",
"dashsight-txs": "bin/txs.js",
"dashsight-utxos": "bin/utxos.js"
},
"scripts": {
"lint": "npx jshint@2 -c .jshintrc ./lib ./bin ./*.js; npx -p typescript@4 tsc",
"fmt": "npx prettier@2 --write '**/*.{md,js}'",
"test": "echo \"Error: no test specified\" && exit 1",
"bump": "npm version -m \"chore(release): bump to v%s\""
},
"files": [
"bin",
"dashfetch.js",
"dashsight.js",
"dashsocket.js",
"index.js",
"typings",
"ws"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/dashsight.js.git"
},
"keywords": [
"dash",
"insight",
"api",
"digital",
"cash"
],
"author": "AJ ONeal <[email protected]> (https://coolaj86.com)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/dashhive/dashsight.js/issues"
},
"homepage": "https://github.com/dashhive/dashsight.js#readme",
"optionalDependencies": {
"dotenv": "^16.0.1"
},
"dependencies": {
"dashtx": "^0.9.0-3"
},
"devDependencies": {
"@dashincubator/base58check": "^1.3.1",
"@dashincubator/ripemd160": "^2.3.0",
"@dashincubator/secp256k1": "^1.7.1-1",
"@types/tough-cookie": "^4.0.2"
}
}