-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "offline-directline",
"version": "1.3.1",
"description": "Unofficial offline version of the Bot Framework Directline connector",
"homepage": "https://github.com/ryanvolum/offline_dl",
"main": "dist/bridge.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
"nodewatch": "nodemon index.js",
"start": "node dist/index.js",
"directline": "node dist/cmdutil.js"
},
"types": "dist/bridge.d.ts",
"author": "Ryan Volum",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ryanvolum/offline_dl"
},
"dependencies": {
"body-parser": "^1.17.2",
"commander": "^2.17.1",
"es6-promise": "^4.1.1",
"express": "4.16.3",
"isomorphic-fetch": "2.2.1",
"moment": "2.22.2",
"tslint": "^5.11.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/dotenv": "^4.0.0",
"@types/express": "4.16.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/moment": "2.13.0",
"@types/node": "10.5.1",
"@types/uuid": "3.4.3",
"typescript": "2.9.2"
},
"bin": {
"directline": "./dist/cmdutil.js"
}
}