46 lines
956 B
JSON
46 lines
956 B
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://crapaud-fou.org/images/coaaaa.png"
|
|
},
|
|
"dependencies": {
|
|
"bbot": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.18.3"
|
|
},
|
|
"scripts": {
|
|
"setup": "node init.js",
|
|
"start": "node index.js",
|
|
"watch": "nodemon index.js",
|
|
"debug": "nodemon --inspect index.js"
|
|
}
|
|
}
|