forked from bitpay/bitcore-p2p
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
70 lines (70 loc) · 1.46 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
65
66
67
68
69
70
{
"name": "@dashevo/dashcore-p2p",
"version": "1.2.2",
"description": "Interface to the dash P2P network for Dashcore",
"author": "Dash Core Group, Inc. <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha './test/**/*.js'",
"coverage": "nyc mocha"
},
"contributors": [
{
"name": "Yemel Jardi",
"email": "[email protected]"
},
{
"name": "Braydon Fuller",
"email": "[email protected]"
},
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Eric Martindale",
"email": "[email protected]"
},
{
"name": "Philip Hutchins",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Esteban Ordano",
"email": "[email protected]"
},
{
"name": "Elichai Turkel"
}
],
"keywords": [
"dash",
"bitcore",
"dashcore"
],
"repository": {
"type": "git",
"url": "https://github.com/dashevo/dashcore-p2p.git"
},
"dependencies": {
"@dashevo/dashcore-lib": "^0.19.25",
"bloom-filter": "^0.2.0",
"node-buffers": "^0.1.1",
"socks5-client": "^1.2.8"
},
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4"
},
"license": "MIT"
}