forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.04 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
{
"name": "stanza.io",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "9.1.0",
"author": "Lance Stout <[email protected]>",
"browser": {
"request": "xhr",
"faye-websocket": false
},
"browserify": {
"transform": [
[
"browserify-versionify",
{
"placeholder": "__STANZAIO_VERSION__"
}
]
]
},
"bugs": "https://github.com/otalk/stanza.io/issues",
"contributors": [
"Philipp Hancke <[email protected]>",
"Steven Lloyd Watkin <[email protected]>"
],
"dependencies": {
"alt-sasl-digest-md5": "^1.0.0",
"async": "^2.5.0",
"browserify-versionify": "^1.0.4",
"faye-websocket": "^0.11.0",
"hostmeta": "^2.0.0",
"iana-hashes": "^1.0.2",
"jingle": "^3.0.0",
"jxt": "^3.1.0",
"jxt-xmpp": "^3.1.0",
"jxt-xmpp-types": "github:stefansaenger/jxt-xmpp-types",
"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": "^3.0.1",
"wildemitter": "^1.0.1",
"xhr": "^2.0.1",
"xmpp-jid": "^1.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"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.6.2"
},
"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"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}