-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "bcbot",
"version": "1.0.0",
"description": "BCBot is a hubot-based chatbot for BCGov's RocketChat instance",
"main": "bin/hubot",
"repository": "git@github.com:bcgov/platform-services-bcbot.git",
"license": "MIT",
"private": false,
"keywords": [
"hubot",
"rocketchat",
"chatbot",
"chat",
"bcbot",
"bcgov",
"bcdevex"
],
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"scripts": {
"start": "node node_modules/hubot/bin/hubot.js -a rocketchat --name rocketbot",
"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": {
"base64-url": "^2.3.3",
"chrono-node": "^1.4.8",
"coffeescript": "^2.5.1",
"hubot": "3",
"hubot-mongodb-3-brain": "^0.1.2",
"hubot-mongodb-brain": "^0.1.1",
"hubot-redis-brain": "^1.0.0",
"hubot-rocketchat": "^2.0.0",
"hubot-scripts": "^2.17.2",
"lodash": "^4.17.20",
"moment": "^2.29.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"dotenv": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^1.19.1"
}
}