forked from Azure-Samples/SpeechToText-WebSockets-Javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "microsoft-speech-browser-sdk",
"version": "0.0.3",
"description": "Microsoft Speech SDK for browsers",
"main": "distrib/speech.browser.sdk-min.js",
"types": "distrib/speech.browser.sdk.d.ts",
"keywords": [
"microsoft",
"speech",
"sdk",
"javascript",
"typescript",
"ts",
"js",
"browser",
"websocket",
"speechtotext"
],
"bugs": {
"url": "https://github.com/Azure-Samples/SpeechToText-WebSockets-Javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Azure-Samples/SpeechToText-WebSockets-Javascript.git"
},
"author": "Microsoft",
"license": "ISC",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-bump": "^2.7.0",
"gulp-git": "^2.2.0",
"gulp-minify": "0.0.15",
"gulp-sourcemaps": "^2.6.0",
"gulp-tag-version": "^1.3.0",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^3.1.6",
"tslint": "^5.1.0",
"typescript": "^2.3.2"
},
"scripts": {
"prepublishOnly": "npm install & gulp build",
"build": "npm install & gulp build",
"patchRelease": "npm install & gulp patchRelease",
"featureRelease": "npm install & gulp featureRelease",
"majorRelease": "npm install & gulp majorRelease",
"preRelease": "npm install & gulp preRelease"
}
}