forked from claudiajs/example-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 776 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 776 Bytes
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
{
"name": "simple-bot",
"private": "true",
"version": "1.0.0",
"description": "Simple bot example for claudia bot builder",
"scripts": {
"create": "claudia create --region us-east-1 --api-module api",
"configure-facebook": "claudia update --configure-fb-bot",
"configure-skype": "claudia update --configure-skype-bot",
"configure-telegram": "claudia update --configure-telegram-bot",
"configure-slack": "claudia update --configure-slack-slash-command",
"start": "ntl"
},
"repository": {
"type": "git",
"url": "https://github.com/stojanovic/bot-builder.git"
},
"license": "MIT",
"dependencies": {
"claudia-bot-builder": "^4",
"huh": "^1.1.4"
},
"devDependencies": {
"claudia": "^4",
"ntl": "^1.1.2"
}
}