forked from evancohen/sonus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "sonus",
"version": "0.1.7",
"description": "Open source cross platform decentralized always-on speech recognition framework",
"main": "dist/src/sonus.js",
"scripts": {
"test": "eslint . && tslint -c tslint.json src/**/*.ts",
"build": "tsc",
"example": "npm run build && node examples/example.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evancohen/sonus.git"
},
"keywords": [
"keyword",
"spotting",
"hotword",
"detection",
"STT",
"speech",
"voice"
],
"author": "Evan Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/evancohen/sonus/issues"
},
"homepage": "https://github.com/evancohen/sonus#readme",
"dependencies": {
"@google-cloud/speech": "^0.6.0",
"node-record-lpcm16": "^0.1.7",
"snowboy": "^1.1.0",
"stream": "0.0.2"
},
"devDependencies": {
"eslint": "^3.7.0",
"ts-node": "^2.1.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
}
}