forked from holepunchto/hyperswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 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
55
56
57
58
59
{
"name": "hyperswarm",
"version": "4.18.0",
"description": "A distributed networking stack for connecting peers",
"files": [
"index.js",
"lib/**.js"
],
"imports": {
"events": {
"bare": "bare-events",
"default": "events"
},
"process": {
"bare": "bare-process",
"default": "process"
}
},
"dependencies": {
"b4a": "^1.3.1",
"bare-events": "^2.2.0",
"hyperdht": "^6.21.0",
"safety-catch": "^1.0.2",
"shuffled-priority-queue": "^2.1.0",
"streamx": "^2.22.1",
"unslab": "^1.3.0"
},
"devDependencies": {
"bare-process": "^4.2.2",
"brittle": "^3.0.2",
"hypercore-crypto": "^3.4.0",
"lunte": "^1.3.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"which-runtime": "^1.3.2"
},
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && lunte",
"test": "npm run test:node && npm run test:bare",
"test:generate": "brittle -r test/all.js test/*.js",
"test:node": "brittle-node --coverage test/*.js",
"test:bare": "bare test/all.js"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/hyperswarm.git"
},
"author": "Mathias Buus (@mafintosh)",
"contributors": [
"David Mark Clements (@davidmarkclem)",
"Andrew Osheroff (@andrewosh)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/holepunchto/hyperswarm/issues"
},
"homepage": "https://github.com/holepunchto/hyperswarm"
}