forked from microsoft/BotFramework-DirectLineJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 964 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 964 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
{
"name": "botframework-directlinejs",
"version": "0.11.1-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": "jest"
},
"repository": {
"type": "git",
"url": "git://git@github.com/Microsoft/BotFramework-DirectLineJS.git"
},
"author": "Microsoft Corp",
"license": "MIT",
"dependencies": {
"rxjs": "^5.0.3"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"source-map-loader": "^0.1.5",
"ts-jest": "^23.10.5",
"ts-loader": "^1.3.3",
"typescript": "^2.3.2",
"webpack": "^1.14.0"
}
}