-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1001 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
{
"name": "real-time-audio-transcription",
"version": "1.0.0",
"description": "Read wav audio files and get their audio chunks transcribed by Google Speech API in real time.",
"main": "readAndTranscribe.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phsultan/real-time-audio-transcription.git"
},
"keywords": [
"audio",
"transcription",
"google",
"real",
"time"
],
"author": "Philippe SULTAN",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/phsultan/real-time-audio-transcription/issues"
},
"homepage": "https://github.com/phsultan/real-time-audio-transcription#readme",
"dependencies": {
"@google-cloud/speech": "~1.5.x",
"minimist": "^1.2.0"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0"
}
}