forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 869 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
28
29
30
31
32
33
34
35
36
{
"name": "azure_node_bot",
"version": "1.0.0",
"description": "Microsoft Bot Framework bot written in NodeJS to test issues.",
"main": "node_bot.js",
"dependencies": {
"botbuilder": "^3.8.2",
"dotenv-extended": "^2.0.0",
"express": "^4.14.1",
"request-promise": "^4.1.1",
"restify": "^4.3.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node node_bot.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fignewton5/AzureNodeBot.git"
},
"keywords": [
"Microsoft",
"Bot",
"Framework",
"Chatbot",
"Chat",
"Bot"
],
"author": "Tony Anziano",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fignewton5/AzureNodeBot/issues"
},
"homepage": "https://github.com/Fignewton5/AzureNodeBot#readme"
}