forked from chris-rock/node-xmpp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "node-xmpp-client",
"version": "3.0.0",
"description": "XMPP client for JavaScript",
"main": "index.js",
"scripts": {
"test": "grunt test",
"browserify": "grunt browserify",
"integration-test": "grunt integration-test",
"full-test": "grunt full-test"
},
"repository": "github:node-xmpp/node-xmpp-client",
"keywords": [
"client",
"XMPP",
"C2S",
"WebSocket",
"BOSH"
],
"author": {
"name": "Lloyd Watkin",
"email": "[email protected]"
},
"license": "MIT",
"bugs": "https://github.com/node-xmpp/node-xmpp-client/issues",
"dependencies": {
"browser-request": "^0.3.3",
"debug": "^2.2.0",
"faye-websocket": "^0.10.0",
"istanbul": "^0.4.1",
"minimist": "^1.2.0",
"node-xmpp-core": "^5.0.0",
"request": "^2.65.0"
},
"devDependencies": {
"brfs": "^1.4.1",
"browserify": "^3.19.1",
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-browserify": "^1.3.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-connect": "0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^2.0.0",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-mocha-phantomjs": "^2.0.0",
"grunt-standard": "^2.0.0",
"mocha": "^2.3.3",
"node-xmpp-server": "^2.1.0",
"should": "^8.0.2"
},
"browser": {
"request": "browser-request",
"node-stringprep": false,
"faye-websocket": false,
"./srv": false,
"dns": false
},
"homepage": "https://github.com/node-xmpp/node-xmpp-client"
}