-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
66 lines (66 loc) · 1.49 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
{
"name": "hyperdht",
"version": "6.11.0",
"description": "The DHT powering Hyperswarm",
"main": "index.js",
"browser": "browser.js",
"bin": {
"hyperdht": "./bin.js"
},
"files": [
"index.js",
"browser.js",
"testnet.js",
"bin.js",
"lib/**.js"
],
"dependencies": {
"@hyperswarm/secret-stream": "^6.0.0",
"b4a": "^1.3.1",
"blind-relay": "^1.3.0",
"bogon": "^1.0.0",
"compact-encoding": "^2.4.1",
"compact-encoding-net": "^1.0.1",
"debugging-stream": "^2.0.0",
"dht-rpc": "^6.9.0",
"events": "^3.3.0",
"hypercore-crypto": "^3.3.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",
"xache": "^1.1.0"
},
"devDependencies": {
"brittle": "^3.0.0",
"keypear": "^1.1.1",
"standard": "^17.1.0"
},
"scripts": {
"test": "standard && node test/all.js",
"test:generate": "brittle -r test/all.js test/*.js",
"lint": "standard"
},
"author": "Mathias Buus (@mafintosh)",
"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"
]
}
}