-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
46 lines (46 loc) · 1.66 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
{
"name": "kadoh"
, "version": "0.1.0"
, "description": "Kademlia over HTTP in Javascript"
, "keywords":["p2p", "kad", "kademlia", "dht", "mainline", "bittorrent", "http", "xmpp", "bosh", "udp", "socket.io"]
, "contributors": [
"Alexandre Lachèze <alexandre.lacheze@gmail.com>"
, "Pierre Guilleminot <pierre.guilleminot@gmail.com>"
]
, "repository":{
"type": "git"
, "url": "https://github.com/jinroh/kadoh.git"
}
, "main" : "./lib/index.js"
, "browserify" : "./lib/index-browserify.js"
, "dependencies": {
"colors" : "~0.6"
, "connect" : "~2.0"
, "express" : "~2.5"
, "ifconfig.me" : "https://github.com/alexstrat/ifconfig.me-node/tarball/master"
, "jake" : "~0.1"
, "klass" : "~1.2"
, "ltx" : ">= 0.2.0"
, "node-xmpp" : "~0.3"
, "bncode" : "~0.2"
, "socket.io" : "~0.9"
, "socket.io-client" : "https://github.com/substack/socket.io-client/tarball/master"
, "mustache" : "~0.4"
, "browserify" : "https://github.com/alexstrat/node-browserify/tarball/for-kadoh"
, "tagify" : "*"
, "Strophe.js" : "https://github.com/alexstrat/strophejs/tarball/for-kadoh"
},
"scripts": {
"test": "jake test:node[spec]"
},
"devDependencies": {
"mocha" : "~1.0"
, "chai" : "~1.0"
, "sinon-chai" : "~2.1"
, "sinon" : "~1.3"
, "optimist" : "~0.3"
, "nconf" : "~0.5"
, "multimeter" : "~0.1"
}
, "engines": { "node": ">= 0.6.0" }
}