-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 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
{
"name": "chord",
"version": "0.0.1",
"description":
"Chord is a key-based routing protocol used to build higher-level p2p applications such as DHTs.",
"repository": {
"type": "git",
"url": "https://github.com/danrpts/chord.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "DEBUG=cli node ./examples/cli.js",
"chat": "DEBUG=chat node ./examples/chat.js"
},
"author": "Daniel Peterson <danrpts@gmail.com>",
"license": "GPL-3.0",
"dependencies": {
"bignum": "^0.13.0",
"get-port": "^3.1.0",
"grpc": "^1.12.4",
"ip": "^1.1.5",
"underscore": "^1.8.3"
},
"devDependencies": {
"chalk": "^2.0.1",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"minimist": "^1.2.0",
"socket.io": "^2.1.1"
}
}