-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "google-speech-from-buffer",
"description": "Wrapper for Google Speech API designed to pass in a buffer and return the recognized text.",
"keywords": [
"speech",
"recognition",
"google",
"buffer"
],
"version": "0.0.2",
"private": false,
"license": "Apache-2.0",
"author": "Nate Lewis",
"scripts": {
"lint": "eslint \"**/*.js\" --fix; true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/natelewis/google-speech-from-buffer.git"
},
"bugs": {
"url": "https://github.com/natelewis/google-speech-from-buffer/issues"
},
"homepage": "https://github.com/natelewis/google-speech-from-buffer",
"dependencies": {
"@google-cloud/speech": "^0.10.2"
},
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-google": "^0.9.1"
},
"engines": {
"node": "7"
},
"main": "index.js"
}