forked from holepunchto/hyperdht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.78 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
71
72
73
74
75
76
77
{
"name": "hyperdht-hugin",
"version": "1.0.1",
"description": "The DHT powering Hyperswarm for Hugin.",
"main": "index.js",
"browser": "browser.js",
"bin": {
"hyperdht": "./bin.js"
},
"files": [
"index.js",
"browser.js",
"testnet.js",
"bin.js",
"lib/**.js"
],
"imports": {
"events": {
"bare": "bare-events",
"default": "events"
}
},
"dependencies": {
"@hyperswarm/secret-stream": "^6.6.2",
"b4a": "^1.3.1",
"bare-events": "^2.2.0",
"blind-relay": "^1.3.0",
"bogon": "^1.0.0",
"compact-encoding": "^2.4.1",
"compact-encoding-net": "^1.0.1",
"dht-rpc": "^6.15.1",
"hypercore-crypto": "^3.3.0",
"hypercore-id-encoding": "^1.2.0",
"noise-curve-ed": "^2.0.0",
"noise-handshake": "^3.0.0",
"record-cache": "^1.1.1",
"safety-catch": "^1.0.1",
"signal-promise": "^1.0.3",
"sodium-universal": "^4.0.0",
"streamx": "^2.16.1",
"unslab": "^1.3.0",
"xache": "^1.1.0"
},
"devDependencies": {
"brittle": "^3.0.0",
"graceful-goodbye": "^1.3.0",
"newline-decoder": "^1.0.2",
"standard": "^17.1.0"
},
"scripts": {
"test": "standard && node test/all.js",
"test:generate": "brittle -r test/all.js test/*.js",
"lint": "standard",
"integration": "brittle test/integration/*.js",
"end-to-end": "brittle test/end-to-end/*.js"
},
"author": "n9lsjr",
"license": "MIT",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/hyperdht.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/holepunchto/hyperdht/issues"
},
"homepage": "https://github.com/holepunchto/hyperdht#readme",
"standard": {
"ignore": [
"**/*.mjs"
]
}
}