2019-10-13 03:38:25 +02:00
|
|
|
{
|
|
|
|
"name": "xmpp-bot",
|
2019-11-24 22:02:51 +01:00
|
|
|
"version": "2.1.0",
|
2019-10-13 03:38:25 +02:00
|
|
|
"description": "XMPP bot",
|
2019-10-18 22:42:04 +02:00
|
|
|
"main": "./lib/server.js",
|
2019-10-13 03:38:25 +02:00
|
|
|
"scripts": {
|
2019-10-18 22:42:04 +02:00
|
|
|
"dev": "nodemon lib/server.js",
|
|
|
|
"start": "NODE_ENV=production node lib/server.js",
|
2019-10-14 09:30:43 +02:00
|
|
|
"lint": "eslint .",
|
2019-10-18 21:40:40 +02:00
|
|
|
"test": "mocha",
|
2019-10-20 17:58:18 +02:00
|
|
|
"cover": "nyc --reporter=html --reporter=text mocha",
|
|
|
|
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
|
2019-10-13 03:38:25 +02:00
|
|
|
},
|
2019-11-22 00:24:57 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 10.0.0"
|
|
|
|
},
|
2019-10-13 03:38:25 +02:00
|
|
|
"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": {
|
2019-11-21 01:44:43 +01:00
|
|
|
"@xmpp/client": "^0.8.0",
|
2019-10-13 03:38:25 +02:00
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"express-basic-auth": "^1.2.0",
|
|
|
|
"jmespath": "^0.15.0",
|
|
|
|
"log4js": "^4.5.1",
|
|
|
|
"morgan": "^1.9.1",
|
|
|
|
"node-cleanup": "^2.1.2",
|
2019-11-21 01:44:43 +01:00
|
|
|
"request": "^2.88.0"
|
2019-10-13 03:38:25 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"chai": "^4.2.0",
|
2019-11-22 00:24:57 +01:00
|
|
|
"coveralls": "^3.0.8",
|
2019-11-23 20:40:10 +01:00
|
|
|
"eslint": "^6.7.0",
|
2019-10-13 03:38:25 +02:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
|
|
|
"eslint-plugin-import": "^2.18.2",
|
|
|
|
"eslint-plugin-node": "^9.2.0",
|
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2019-11-19 22:53:58 +01:00
|
|
|
"mocha": "^6.2.2",
|
2019-10-20 03:01:59 +02:00
|
|
|
"mock-require": "^3.0.3",
|
2019-11-19 22:53:58 +01:00
|
|
|
"nock": "^11.7.0",
|
|
|
|
"nodemon": "^1.19.4",
|
2019-10-20 03:01:59 +02:00
|
|
|
"nyc": "^14.1.1",
|
|
|
|
"sinon": "^7.5.0"
|
2019-10-13 03:38:25 +02:00
|
|
|
}
|
|
|
|
}
|