forked from microsoft/botframework-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 736 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 736 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",
"author": "Microsoft Corp.",
"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.",
"version": "0.6.0",
"license": "MIT",
"keywords": [
"bots",
"chatbots"
],
"bugs": {
"url": "https://github.com/Microsoft/BotBuilder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/BotBuilder.git"
},
"main": "./lib/botbuilder.js",
"typings": "./lib/botbuilder.d.ts",
"dependencies": {
"chrono-node": "^1.1.3",
"node-uuid": "^1.4.7",
"request": "^2.69.0",
"sprintf-js": "^1.0.3"
},
"devDependencies": {
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha tests/*.js"
}
}