mirror of
https://github.com/nioc/xmpp-bot.git
synced 2024-11-12 21:06:50 +01:00
061725526b
Update dependencies (security fix) Fix lint errors
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"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 <dev@nioc.eu>",
|
|
"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"
|
|
}
|
|
}
|