-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.07 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": "node-p2p-chord",
"version": "0.5.1",
"description": "A light-weight Chord protocol implementation for a peer-to-peer distributed hash table.",
"keywords": [
"chord",
"p2p"
],
"author": "jollen <[email protected]> (http://jollen.org/)",
"main": "libs/server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jollen/node-p2p-chord.git"
},
"homepage": "https://github.com/jollen/node-p2p-chord.git",
"dependencies": {
"assert": "^1.4.1",
"backbone": "^1.3.3",
"bl": "^0.9.4",
"bluebird": "^3.3.3",
"coap": "^0.10.3",
"codecov": "^1.0.1",
"console.table": "^0.7.0",
"underscore": "^1.8.3",
"util": "^0.10.3",
"utils-merge": "^1.0.0",
"uuid": "^2.0.2",
"vows": "^0.8.1",
"websocket": "^1.0.17",
"wotcity.io": "*"
},
"scripts": {
"test": "./node_modules/.bin/vows tests/tests.js --spec",
"start": "node ./websocket-broker-server.js"
},
"devDependencies": {
"codecov": "^1.0.1",
"mocha": "^2.4.5",
"twilio": "^2.9.0"
},
"license": "MIT License"
}