forked from xmppo/node-xmpp-bosh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "node-xmpp-bosh",
"version": "0.7.11",
"main": "./src/main",
"bin": {
"bosh-server": "./run-server.js"
},
"description": "An XMPP BOSH server written for node.js in javascript",
"author": "Dhruv Matani",
"dependencies": {
"node-expat": "~2.3.0",
"ltx": "~0.5.1",
"node-uuid": "~1.3.3",
"tav": "~0.1.0",
"underscore": "~1.3.3",
"eventpipe": "~0.0.5",
"dns-srv": "0.3.0",
"semver": "~1.0.8",
"ws": "git+https://github.com/einaros/ws.git#f429240aea",
"node-lumberjack": "= 0.0.4",
"ejs": "~0.8.3"
},
"devDependencies": {
"jsdom": "~0.2.15",
"jslint": "~0.1.9"
},
"repository": {
"type": "git",
"url": "git://github.com/dhruvbird/node-xmpp-bosh.git"
},
"homepage": "https://github.com/dhruvbird/node-xmpp-bosh",
"bugs": "https://github.com/dhruvbird/node-xmpp-bosh/issues",
"maintainers": [
{
"name": "Dhruv Matani",
"email": "dhruvbird@gmail.com",
"web": "http://dhruvbird.com/"
},
{
"name": "Anup Kalbalia",
"email": "anup.kalbalia@gmail.com"
},
{
"name": "Satyam Shekhar",
"email": "satyamshekhar@gmail.com",
"url": "http://satyamshekhar.com/"
}
],
"contributors": [
{
"name": "Valérian Saliou",
"email": "valerian@valeriansaliou.name",
"url": "https://valeriansaliou.name/"
},
{
"name": "Emmanuel Gil Peyrot",
"email": "linkmauve@linkmauve.fr",
"url": "http://linkmauve.fr/"
},
{
"name": "Julien Genestoux",
"email": "julien.genestoux@gmail.com",
"url": "http://ouvre-boite.com/"
},
{
"name": "Sonny Piers",
"email": "sonny@fastmail.net"
},
{
"name": "Aria Stewart",
"email": "aredridel@nbtsc.org"
},
{ "name": "Gavin Llewellyn",
"email": "gavin@llewnet.co.uk"
}
],
"licenses": [
{
"type": "MIT"
}
],
"engines": {
"node": ">=0.6.12"
},
"scripts": {
"start": "node run-server.js",
"test": "bash tests/all.sh"
}
}