-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 KB
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
{
"name": "dht-rpc",
"version": "6.26.4",
"description": "Make RPC calls over a Kademlia based DHT",
"main": "index.js",
"files": [
"index.js",
"lib/*.js"
],
"imports": {
"events": {
"bare": "bare-events",
"default": "events"
}
},
"dependencies": {
"adaptive-timeout": "^1.0.1",
"b4a": "^1.6.1",
"bare-events": "^2.2.0",
"compact-encoding": "^2.11.0",
"compact-encoding-net": "^1.2.0",
"fast-fifo": "^1.1.0",
"kademlia-routing-table": "^1.0.1",
"nat-sampler": "^1.0.1",
"sodium-universal": "^5.0.0",
"streamx": "^2.13.2",
"time-ordered-set": "^2.0.0",
"udx-native": "^1.5.3"
},
"devDependencies": {
"brittle": "^3.0.0",
"lunte": "^1.3.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"test-suspend": "^1.0.0"
},
"scripts": {
"format": "prettier --write .",
"test": "npm run test:node && npm run test:bare",
"test:bare": "brittle-bare --coverage test.js",
"lint": "prettier --check . && lunte",
"test:node": "brittle-node --coverage test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/dht-rpc.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/holepunchto/dht-rpc/issues"
},
"homepage": "https://github.com/holepunchto/dht-rpc#"
}