mirror of
https://github.com/nioc/xmpp-bot.git
synced 2024-11-12 21:06:50 +01:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "xmpp-bot",
|
|
"version": "1.0.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"
|
|
},
|
|
"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": {
|
|
"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",
|
|
"request": "^2.88.0",
|
|
"simple-xmpp": "^1.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"coveralls": "^3.0.7",
|
|
"eslint": "^6.5.1",
|
|
"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",
|
|
"mocha": "^6.2.1",
|
|
"mock-require": "^3.0.3",
|
|
"nock": "^11.4.0",
|
|
"nodemon": "^1.19.3",
|
|
"nyc": "^14.1.1",
|
|
"sinon": "^7.5.0"
|
|
}
|
|
}
|