-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 978 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": "speech-to-text",
"version": "1.0.0",
"description": "A simple app to convert audio files to text using speech-to-text APIs",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aniekanoffiong/speech-to-text.git"
},
"keywords": [
"speech",
"text",
"conversion",
"audio"
],
"author": "Offiong Aniekanabasi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aniekanoffiong/speech-to-text/issues"
},
"homepage": "https://github.com/aniekanoffiong/speech-to-text#readme",
"dependencies": {
"@google-cloud/speech": "^1.4.0",
"@google-cloud/storage": "^1.6.0",
"aws-sdk": "^2.228.1",
"body-parser": "^1.18.2",
"chalk": "^2.4.0",
"clui": "^0.3.6",
"express": "^4.16.3",
"fluent-ffmpeg": "^2.1.2",
"mime": "^2.3.1",
"multer": "^1.3.0"
}
}