-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "hypercore-rehost-server",
"version": "1.3.9",
"type": "module",
"bin": {
"rehost-server": "./run.js"
},
"description": "Minimal server on top of hypercore-rehoster",
"main": "index.js",
"scripts": {
"test": "standard && c8 --reporter=text mocha",
"example": "node example.js"
},
"author": "H. Degroote",
"license": "Apache-2.0",
"devDependencies": {
"axios": "^1.7.4",
"c8": "^8.0.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"random-access-memory": "^5.0.1",
"safety-catch": "^1.0.2",
"standard": "^17.0.0"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"dependencies": {
"corestore": "^6.13.0",
"dcent-digraph": "^1.0.0",
"dotenv": "^16.0.3",
"fastify": "^4.18.0",
"graceful-goodbye": "^1.2.0",
"hexkey-utils": "^1.0.2",
"hypercore-rehoster": "^1.2.1",
"hyperdht": "^6.6.2",
"hyperswarm": "^4.4.1",
"@hdegroote/instrumented-corestore": "^1.0.0",
"instrumented-swarm": "^1.0.0",
"pino": "^8.8.0",
"prom-client": "^14.2.0",
"rc": "^1.2.8",
"swarm-manager": "^1.0.0",
"tiny-byte-size": "^1.1.0"
}
}