This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
bog-bbot-archive/package.json

54 lines
1.1 KiB
JSON

{
"name": "bbot-bot",
"version": "1.0.0",
"description": "bRocket is a bBot boilerplate for building Rocket.Chat bots",
"main": "index.js",
"files": [
"index.js",
"src"
],
"repository": "git@github.com:Amazebot/bbot-rocketchat-boilerplate.git",
"author": "mose<mose@mose.com>",
"contributors": [],
"license": "MIT",
"private": false,
"engines": {
"node": "> 8.0.0",
"npm": "> 5.0.0"
},
"keywords": [
"bBot",
"Rocket.Chat",
"rocketchat",
"chatbot",
"chat",
"messaging",
"conversation",
"CUI"
],
"bot": {
"name": "bot",
"message-adapter": "rocketchat",
"avatar": "https://cloud.p2p.legal/apps/files_sharing/publicpreview/PGw3GwgWZbDMYSt"
},
"dependencies": {
"bbot": "^1.4.0",
"decode-entities": "^1.0.7",
"exec": "^0.2.1",
"glob": "^7.1.6",
"html-entities": "^1.2.1",
"path": "^0.12.7",
"unescape": "^1.0.1",
"util": "^0.12.1"
},
"devDependencies": {
"nodemon": "^1.18.3"
},
"scripts": {
"setup": "node init.js",
"start": "node index.js",
"watch": "nodemon index.js",
"debug": "nodemon --inspect index.js"
}
}