forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 846 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 846 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
35
36
37
{
"name": "nodejs-docs-samples-speech",
"private": true,
"license": "Apache-2.0",
"author": "Google LLC",
"repository": "googleapis/nodejs-speech",
"engines": {
"node": ">=12.0.0"
},
"files": [
"*.js",
"resources/"
],
"scripts": {
"test": "c8 mocha system-test --timeout 600000"
},
"dependencies": {
"@google-cloud/resource-manager": "^4.1.1",
"@google-cloud/speech": "^5.1.0",
"@google-cloud/storage": "^6.0.0",
"chalk": "^5.0.0",
"fs.promises": "^0.1.2",
"google-proto-files": "^3.0.0",
"node-record-lpcm16": "^1.0.1",
"proto3-json-serializer": "^1.0.0",
"protobufjs": "^7.0.0",
"sinon": "^15.0.0",
"sox": "^0.1.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"c8": "^7.0.0",
"chai": "^4.2.0",
"mocha": "^10.0.0",
"uuid": "^9.0.0"
}
}