forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.97 KB
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
{
"name": "stanza.io",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "5.10.0",
"author": "Lance Stout <lance@andyet.net>",
"browser": {
"request": "browser-request",
"faye-websocket": false,
"./lib/plugins/index.js": "./lib/plugins/index-browser.js"
},
"browserify": {
"transform": "brfs"
},
"bugs": "https://github.com/legastero/stanza.io/issues",
"contributors": [
"Steven Lloyd Watkin <lloyd@evilprofessor.co.uk>"
],
"dependencies": {
"async": "0.9.x",
"atob": "1.x",
"bluebird": "1.x",
"browser-request": "0.3.x",
"btoa": "1.x",
"faye-websocket": "0.7.x",
"hostmeta": "1.x",
"jingle": "0.4.x",
"jxt": "1.x",
"node-uuid": "1.x",
"request": "2.x",
"sasl-anonymous": "0.1.x",
"sasl-digest-md5": "0.1.x",
"sasl-external": "0.1.x",
"sasl-plain": "0.1.x",
"sasl-scram-sha-1": "0.2.x",
"saslmechanisms": "0.1.x",
"underscore": "1.x",
"wildemitter": "1.x",
"brfs": "^1.1.1"
},
"devDependencies": {
"browserify": "4.x",
"grunt": "0.4.x",
"grunt-browserify": "2.1.x",
"grunt-contrib-jshint": "0.10.x",
"grunt-contrib-uglify": "0.4.x",
"grunt-nsp-package": "0.0.x",
"grunt-tape": "0.0.x",
"precommit-hook": "^1.0.0",
"tape": "2.x",
"uglify-js": "2.x"
},
"homepage": "http://stanza.io",
"keywords": [
"xmpp",
"websocket",
"stanza.io"
],
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/legastero/stanza.io.git"
},
"scripts": {
"test": "grunt tape"
},
"testling": {
"files": [
"test/connection.js",
"test/stanza-dataforms.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"
]
}
}