This repository has been archived by the owner on Sep 23, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "getusermedia-to-text",
"version": "1.0.5",
"description": "getUserMedia to Text via Google's Speech to Text API",
"main": "index.js",
"scripts": {
"test": "run-s test:*",
"test:deps": "dependency-check ./package.json --no-dev --no-peer -i assert",
"test:lint": "standard | snazzy",
"test:tape": "tape test.js | tap-format-spec",
"start": "electron-rebuild && electron example/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/getusermedia-to-text.git"
},
"keywords": [
"getusermedia",
"speech-to-text",
"google-speech"
],
"author": "Bret Comnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/getusermedia-to-text/issues"
},
"homepage": "https://github.com/bcomnes/getusermedia-to-text#readme",
"dependencies": {
"@google-cloud/speech": "^0.9.1",
"assert": "^2.0.0",
"audio-stream": "^0.2.0",
"flush-write-stream": "^2.0.0",
"getusermedia": "^2.0.1",
"pcm-stream": "^1.0.0",
"pump": "^1.0.2",
"pumpify": "^2.0.1"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"choo": "^5.1.5",
"choo-log": "^6.1.1",
"dependency-check": "^4.1.0",
"electron": "^1.6.5",
"electron-rebuild": "^1.5.7",
"global": "^4.3.1",
"npm-run-all": "^4.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"tape": "^4.6.3"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
}
}