-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
49
50
51
{
"name": "botkit-starter-slack",
"version": "0.0.2",
"description": "A starter kit for building a custom Slack bot with Botkit Studio",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"test": "tape ./test/*.test.js | tap-dot",
"tape": "tape ./test/*.test.js",
"tape:debug": "node --inspect-brk tape ./test/*.test.js",
"dogescript:fetch": "rm -rf dogescript && git clone https://github.com/dogescript/dogescript && cd dogescript/ && git log -1 --pretty="%h %B" >> hash && cd ../",
"start:dev": "npm run dogescript:fetch && npm link dogescript && node bot.js"
},
"dependencies": {
"@slack/client": "^4.1.0",
"body-parser": "^1.15.2",
"botkit": "^0.6.12",
"botkit-storage-mongo": "^1.0.6",
"botkit-studio-metrics": "^0.0.2",
"cookie-parser": "^1.4.3",
"debug": "^2.3.3",
"dogescript": "^2.3.0",
"dotenv": "^5.0.1",
"express": "^4.14.0",
"express-hbs": "^1.0.4",
"node-env-file": "^0.1.8",
"querystring": "^0.2.0",
"request": "^2.79.0",
"tape": "^4.9.0",
"vm": "^0.1.0",
"wordfilter": "^0.2.6"
},
"devDependencies": {
"tap-dot": "^1.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/howdyai/botkit-starter-slack.git"
},
"bugs": {
"url": "https://github.com/howdyai/botkit-starter-slack/issues"
},
"homepage": "https://github.com/howdyai/botkit-starter-slack",
"keywords": [
"bots",
"chatbots",
"slack"
],
"author": "ben@howdy.ai",
"license": "ISC"
}