-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "mic-to-speech",
"version": "1.0.1",
"private": false,
"license": "Apache-2.0",
"author": "Nate Lewis",
"scripts": {
"lint": "eslint \"**/*.js\" --fix; true"
},
"dependencies": {
"dev-null-stream": "0.0.1",
"node-microphone": "^0.1.3"
},
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-google": "^0.9.1"
},
"engines": {
"node": "7"
},
"description": "Watches your microphone stream to pull out speech segments that you can save to a file, or send to an endpoint for speech recognition. Ideal for saving audio for conversation monitoring and assistant apps that work like Google Home or Amazon Alexa.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natelewis/mic-to-speech.git"
},
"keywords": [
"speech recognition",
"speech",
"microphone"
],
"bugs": {
"url": "https://github.com/natelewis/mic-to-speech/issues"
},
"homepage": "https://github.com/natelewis/mic-to-speech#readme"
}