-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 999 Bytes
/
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
{
"name": "basics-waterfall",
"author": "[email protected]",
"description": "This Bot demonstrates how to use a waterfall to prompt the user with a series of questions.",
"homepage": "https://github.com/alertbox/bot-examples-ts#readme",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"bot",
"microsoft-bot-framework",
"typescript",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alertbox/bot-examples-ts.git"
},
"bugs": {
"url": "https://github.com/alertbox/bot-examples-ts/issues"
},
"main": "./built/index",
"typings": "./built/index",
"scripts": {
"start": "forever -w ./built/.",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"typescript": "^2.3.4",
"@types/node": "^7.0.31",
"forever": "^0.15.3"
},
"dependencies": {
"@types/restify": "^4.3.4",
"botbuilder": "^3.8.4",
"dotenv-extended": "^2.0.1",
"restify": "^4.3.0"
}
}