-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "@peerlinks/server",
"version": "1.0.0",
"description": "Seeding server for PeerLinks protocol",
"main": "lib/node.js",
"scripts": {
"start": "node -r esm bin/server.js",
"lint": "eslint lib bin",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --reporter=spec test/*-test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/peerlinks/peerlinks-server.git"
},
"keywords": [
"peerlinks",
"server",
"seed",
"p2p",
"irc"
],
"author": "Fedor Indutny <fedor@indutny.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerlinks/peerlinks-server/issues"
},
"homepage": "https://github.com/peerlinks/peerlinks-server#readme",
"dependencies": {
"@peerlinks/protocol": "^7.4.3",
"@peerlinks/sqlite-storage": "^3.0.2",
"@peerlinks/swarm": "^3.0.6",
"bs58": "^4.0.1",
"esm": "^3.2.25",
"micro": "^9.3.4",
"sodium-universal": "^2.0.0",
"yargs": "^14.2.2"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}