forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.45 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "stanza.io",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "7.4.0",
"author": "Lance Stout <lance@andyet.net>",
"browser": {
"request": "xhr",
"faye-websocket": false,
"./lib/plugins/index.js": "./lib/plugins/index-browser.js"
},
"browserify": {
"transform": [
[
"browserify-versionify",
{
"placeholder": "__STANZAIO_VERSION__"
}
]
]
},
"bugs": "https://github.com/otalk/stanza.io/issues",
"contributors": [
"Philipp Hancke <fippo@andyet.net>",
"Steven Lloyd Watkin <lloyd@evilprofessor.co.uk>"
],
"dependencies": {
"alt-sasl-digest-md5": "^1.0.0",
"async": "^1.4.0",
"bluebird": "^2.3.2",
"browserify-versionify": "^1.0.4",
"faye-websocket": "^0.10.0",
"hostmeta": "^2.0.0",
"iana-hashes": "^1.0.2",
"jingle": "^1.5.1",
"jxt": "^3.0.1",
"jxt-xmpp": "^1.1.3",
"jxt-xmpp-types": "^3.0.0",
"lodash.assign": "^3.0.0",
"lodash.filter": "^3.1.0",
"lodash.foreach": "^3.0.2",
"lodash.isarray": "^3.0.1",
"lodash.uniq": "^3.1.0",
"request": "^2.53.0",
"sasl-anonymous": "^0.1.0",
"sasl-external": "^0.1.0",
"sasl-plain": "^0.1.0",
"sasl-scram-sha-1": "^1.1.0",
"sasl-x-oauth2": "^0.1.0",
"saslmechanisms": "^0.1.1",
"uuid": "^2.0.1",
"wildemitter": "^1.0.1",
"xhr": "^2.0.1",
"xmpp-jid": "^1.0.0"
},
"devDependencies": {
"browserify": "^11.0.1",
"jshint": "^2.6.3",
"make-better": "^0.4.1",
"precommit-hook": "^3.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.0",
"uglify-js": "^2.4.24"
},
"homepage": "http://stanza.io",
"keywords": [
"XMPP",
"xmpp",
"websocket",
"stanza",
"json",
"bosh",
"stanza.io",
"otalk",
"jingle"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/otalk/stanza.io.git"
},
"scripts": {
"build": "make build",
"test": "make test",
"lint": "jshint .",
"validate": "npm ls"
},
"testling": {
"files": [
"test/connection.js"
],
"browsers": [
"ie/10..latest",
"chrome/20..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"opera/next",
"safari/6..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}