forked from googleapis/nodejs-speech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.19 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
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
{
"name": "@google-cloud/speech",
"description": "Cloud Speech Client Library for Node.js",
"version": "3.5.4",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=8.10.0"
},
"repository": "googleapis/nodejs-speech",
"main": "./build/src/index.js",
"files": [
"build/protos",
"build/src",
"AUTHORS",
"LICENSE"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google speech",
"speech",
"Google Cloud Speech API"
],
"scripts": {
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check && eslint samples/*.js samples/system-test/*.js system-test/*.js",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"system-test": "c8 mocha build/system-test/*.js --timeout 600000",
"test": "c8 mocha build/test/*.js",
"fix": "gts fix && eslint --fix samples/*.js samples/system-test/*.js system-test/*.js",
"docs-test": "linkinator docs",
"predocs-test": "npm run docs",
"compile": "tsc -p . && cp system-test/*.js build/system-test/ && cp -r protos build/",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"dependencies": {
"@google-cloud/common": "^2.0.0",
"google-gax": "^1.11.1",
"protobufjs": "^6.8.6",
"pumpify": "^2.0.0",
"stream-events": "^1.0.4",
"@types/pumpify": "^1.4.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.0",
"@types/sinon": "^7.5.1",
"c8": "^7.0.0",
"codecov": "^3.0.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.0",
"gts": "^1.1.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"jsdoc-fresh": "^1.0.1",
"jsdoc-region-tag": "^1.0.2",
"linkinator": "^1.5.0",
"mocha": "^7.0.0",
"null-loader": "^3.0.0",
"pack-n-play": "^1.0.0-2",
"power-assert": "^1.6.0",
"prettier": "^1.13.5",
"sinon": "^8.0.0",
"ts-loader": "^6.2.1",
"typescript": "3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}