forked from microsoft/cognitive-services-speech-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.49 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "microsoft-cognitiveservices-speech-sdk",
"author": "Microsoft Corporation",
"homepage": "https://docs.microsoft.com/azure/cognitive-services/speech-service/",
"version": "1.21.0-alpha.0.1",
"license": "MIT",
"description": "Microsoft Cognitive Services Speech SDK for JavaScript",
"keywords": [
"microsoft",
"cognitiveservices",
"speech",
"sdk",
"javascript",
"typescript",
"ts",
"js",
"browser",
"websocket",
"speechtotext",
"texttospeech"
],
"bugs": {
"url": "https://github.com/Microsoft/cognitive-services-speech-sdk-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/cognitive-services-speech-sdk-js"
},
"browser": {
"asn1.js-rfc2560": false,
"asn1.js-rfc5280": false,
"https-proxy-agent": false,
"simple-lru-cache": false,
"ws": false,
"fs": false,
"async-disk-cache": false,
"distrib/es2015/external/ocsp/ocsp": false,
"distrib/lib/external/ocsp/ocsp": false,
"agent-base": false,
"tls": false,
"net": false
},
"main": "distrib/lib/microsoft.cognitiveservices.speech.sdk.js",
"module": "distrib/es2015/microsoft.cognitiveservices.speech.sdk.js",
"types": "distrib/lib/microsoft.cognitiveservices.speech.sdk.d.ts",
"files": [
"distrib/lib/**/*",
"distrib/es2015/**/*",
"distrib/browser/**/*",
"LICENSE",
"REDIST.txt"
],
"devDependencies": {
"@types/bent": "^7.3.2",
"@types/jest": "^25.2.2",
"@types/node": "^12.12.30",
"@types/request": "^2.48.3",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^3.3.3",
"@types/ws": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"asn1.js": "^5.2.0",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"gulp-typescript": "^5.0.1",
"jest": "^26.0.1",
"jest-junit": "^12.0.0",
"ocsp": "^1.2.0",
"request": "^2.88.0",
"rimraf": "^3.0.2",
"semver": "^6.3.0",
"source-map-loader": "^3.0.1",
"ts-jest": "^26.4.4",
"tslint": "^5.20.1",
"typescript": "^3.5.3",
"webpack": "^5.72.1",
"webpack-stream": "^7.0.0"
},
"scripts": {
"build": "gulp compress && gulp build2015",
"test": "npm run lint && npm run jest --coverage",
"jest": "jest",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"civersion": "node ci/version.js",
"prepare": "npm run build"
},
"jest": {
"testEnvironment": "node"
},
"jest-junit": {
"suiteName": "jest tests",
"outputName": "./test-javascript-junit.xml",
"classNameTemplate": "{filename}-{title}",
"titleTemplate": "{filename}-{title}",
"ancestorSeparator": " � ",
"suiteNameTemplate": "{filepath}",
"includeConsoleOutput": true
},
"dependencies": {
"agent-base": "^6.0.1",
"asn1.js-rfc2560": "^5.0.1",
"asn1.js-rfc5280": "^3.0.0",
"async-disk-cache": "^2.1.0",
"bent": "^7.3.12",
"https-proxy-agent": "^4.0.0",
"simple-lru-cache": "0.0.2",
"uuid": "^8.3.0",
"ws": "^7.5.6"
},
"resolutions": {
"extend": "3.0.2",
"set-value": "4.0.1",
"glob-parent": "5.1.2",
"minimist": "1.2.6"
},
"sideEffects": false
}