-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
33 lines (33 loc) · 961 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "hubot-rocketchat-boilerplate",
"version": "0.0.0-develop",
"description": "An example Hubot demonstrating usage of the Rocket.Chat adaptor.",
"main": "bin/hubot",
"repository": "git@github.com:RocketChat/hubot-rocketchat-boilerplate.git",
"author": "Tim Kinnane <tim.kinnane@rocket.chat>",
"license": "MIT",
"private": false,
"keywords": [
"hubot",
"rocketchat",
"chatbot",
"chat"
],
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"scripts": {
"debug": "node --inspect --inspect-brk -r dotenv/config node_modules/hubot/bin/hubot.js -a rocketchat",
"shell": "node -r dotenv/config node_modules/hubot/bin/hubot.js -a shell",
"local": "node -r dotenv/config node_modules/hubot/bin/hubot.js -a rocketchat"
},
"dependencies": {
"coffeescript": "^2.2.2",
"hubot": "3",
"hubot-rocketchat": "rocketchat/hubot-rocketchat"
},
"devDependencies": {
"dotenv": "^5.0.1"
}
}