forked from jsantiagoh/xmppmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 975 Bytes
/
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
{
"repository": "ngti/xmppmock",
"private": true,
"name": "xmppmock",
"version": "0.0.10",
"description": "A simple XMPP endpoint for components and clients to connect to",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"test": "standard && mocha test/*.spec.js",
"lint": "eslint src/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.15.0",
"diff": "^3.0.0",
"ewait": "^0.2.1",
"express": "^4.13.4",
"lokijs": "^1.4.1",
"ltx": "^2.2.0",
"morgan": "^1.6.1",
"node-xmpp-server": "^2.1.3"
},
"standard": {
"globals": [
"it",
"describe",
"beforeEach",
"afterEach",
"before",
"after"
]
},
"devDependencies": {
"eslint": "^2.3.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-mocha": "^2.0.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"mocha": "^3.1.0"
}
}