forked from chris-rock/node-xmpp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "node-xmpp-server",
"version": "2.1.3",
"description": "XMPP server libraries for Node.js",
"scripts": {
"preversion": "npm test",
"unit": "mocha --recursive test/ -t 3000",
"lint": "standard",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec -t 3000 --recursive",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test": "npm run unit && npm run lint && npm run coverage"
},
"homepage": "https://github.com/node-xmpp/node-xmpp-server",
"repository": "github:node-xmpp/node-xmpp-server",
"bugs": "https://github.com/node-xmpp/node-xmpp-server/issues",
"keywords": [
"XMPP",
"server",
"C2S",
"component",
"S2S",
"BOSH",
"WebSocket",
"TCP"
],
"author": "Lloyd Watkin <lloyd@evilprofessor.co.uk>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"es6-collections": "^0.5.6",
"hat": "^0.0.3",
"node-xmpp-core": "^5.0.2",
"ws": "^1.0.1"
},
"devDependencies": {
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"node-xmpp-client": "^3.0.0",
"node-xmpp-component": "^2.0.1",
"pem": "^1.8.1",
"should": "^8.2.2",
"sinon": "^1.17.3"
}
}