-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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": "botbuilder-calling-speech",
"version": "1.0.21",
"description": "Dialog extensions for botbuilder-calling to manage speech-to-text and language understanding",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"watch": "tsc -w",
"bump": "npm version patch -m \"Bump to %s ***NO_CI***\" ",
"bump:push": "git push origin HEAD:%BUILD_SOURCEBRANCH% && git push --tags",
"release:local": "npm pack",
"preversion": "git config user.name CI && git config user.email %npm_package_author_name%"
},
"keywords": [],
"author": "chstone@microsoft.com",
"repository": {
"url": "https://github.com/ctstone/botbuilder-calling-speech",
"type": "git"
},
"license": "MIT",
"peerDependencies": {
"botbuilder-calling": "^3.0.1",
"cognitive-luis-client": "^1.0.6",
"cognitive-speech-client": "^1.1.6"
},
"devDependencies": {
"botbuilder-calling": "^3.0.1",
"cognitive-luis-client": "^1.0.6",
"cognitive-speech-client": "^1.1.6",
"typescript": "^2.2.2"
}
}