-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "xmpp-bot",
"version": "2.2.0",
"description": "XMPP bot",
"main": "./lib/server.js",
"scripts": {
"dev": "nodemon lib/server.js",
"start": "NODE_ENV=production node lib/server.js",
"lint": "eslint .",
"test": "mocha",
"cover": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 12.4.0"
},
"author": "nioc <[email protected]>",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nioc/xmpp-bot.git"
},
"private": true,
"dependencies": {
"@xmpp/client": "^0.13.1",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"jmespath": "^0.16.0",
"log4js": "^6.6.1",
"morgan": "^1.10.0",
"node-cleanup": "^2.1.2",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.0.9",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^14.0.0"
}
}