-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 832 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 832 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
{
"name": "botbuilder-timeout",
"version": "1.0.6",
"description": "Module for Microsoft Bot Framework to enable your bot to prompt the user if user is inactive and ultimately end the conversation if no user activity after a defined period of time.",
"main": "./dist/timeout.js",
"types": [
"./dist/timeout.d.ts",
"./dist/storage.d.ts"
],
"scripts": {
"test": "nodemon ./dist/app",
"watch": "tsc -w -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/user1m/botbuilder-timeout.git"
},
"keywords": [
"Microsoft",
"Bots",
"Bot Framework",
"Timeout",
"Conversation Timeout"
],
"author": "Claudius Mbemba",
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.47",
"botbuilder": "^3.11.0",
"express": "^4.16.2"
}
}