forked from microsoft/BotFramework-DirectLineJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 899 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
{
"name": "botframework-directlinejs",
"version": "0.10.0-0",
"description": "client library for the Microsoft Bot Framework Direct Line 3.0 protocol",
"main": "built/directLine.js",
"types": "built/directLine.d.ts",
"scripts": {
"build": "tsc && webpack",
"watch": "npx npm-run-all -p -r -l tsc-watch webpack-watch",
"tsc-watch": "tsc -w",
"webpack-watch": "webpack -w",
"clean": "rm -rf built",
"prepublish": "tsc && webpack --config webpack.production.config.js",
"test": "echo TODO: Add tests"
},
"repository": {
"type": "git",
"url": "git://git@github.com/Microsoft/BotFramework-DirectLineJS.git"
},
"author": "Microsoft Corp",
"license": "MIT",
"dependencies": {
"rxjs": "^5.0.3"
},
"devDependencies": {
"source-map-loader": "^0.1.5",
"ts-loader": "^1.3.3",
"typescript": "^2.3.2",
"webpack": "^1.14.0"
}
}