forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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
{
"name": "node-xmpp",
"version": "0.5.4",
"main": "./lib/node-xmpp",
"browserify": "./lib/node-xmpp-browserify",
"description": "Idiomatic XMPP client, component & server library for node.js + browserify",
"author": "Astro",
"dependencies": {
"browserify": "~2.18.1",
"node-expat": ">=1.4.1",
"ltx": ">= 0.2.0",
"request": ">= 2.9.153",
"browser-request": ">= 0.2.0",
"faye-websocket": ">= 0.4.1",
"blueimp-md5": ">= 1.0.0",
"mocha": ">=1.0.0"
},
"devDependencies": {
"node-stringprep": ">=0.1.0"
},
"browser": {
"request": "browser-request",
"node-stringprep": false,
"faye-websocket": false,
"./srv": false,
"dns": false
},
"repository": {
"type": "git",
"url": "git://github.com/astro/node-xmpp.git"
},
"homepage": "http://github.com/astro/node-xmpp",
"bugs": "http://github.com/astro/node-xmpp/issues",
"maintainers": [
{
"name": "Astro",
"email": "[email protected]",
"web": "http://spaceboyz.net/~astro/"
},
{
"name": "Lloyd Watkin",
"email": "[email protected]",
"web": "http://www.evilprofessor.co.uk"
}
],
"contributors": [
"Stephan Maka",
"Derek Hammer",
"Daniel Zelisko",
"Michael Geers",
"Nolan Darilek",
"Nathan Rajlich",
"Dhruv Matani",
"Camilo Aguilar",
"Henry Chan",
"Justin Campbell",
"Trent Mick",
"Alexey Shamrin",
"Sonny Piers",
"Chaitanya Gupta",
"Иван",
"Julien Genestoux",
"Ian Langworth",
"Eelco Cramer",
"dodo",
"Markus Kohlhase"
],
"licenses": [
{
"type": "MIT"
}
],
"engine": "node >=0.4.0",
"scripts": {
"postinstall": "browserify -d -o node-xmpp-browser.js -r request:browser-request -i node-stringprep -i faye-websocket -i ./srv -i dns ./lib/node-xmpp-browserify.js",
"test": "mocha -R spec"
}
}