-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "speech-recognition-evaluation",
"version": "1.1.0",
"description": "Command line utility to evaluate Automated Speech Recognition (ASR) systems",
"main": "index.js",
"engines": {
"node": ">=10"
},
"directories": {
"lib": "lib"
},
"bin": {
"asr-eval": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/symblai/speech-recognition-evaluation.git"
},
"keywords": [
"speech",
"speech recognition",
"asr",
"automated speech recognition",
"speech to text",
"word error rate",
"word information loss",
"wil",
"wer",
"tool",
"utility",
"command line"
],
"author": "toshish@symbl.ai",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/symblai/speech-recognition-evaluation/issues"
},
"homepage": "https://github.com/symblai/speech-recognition-evaluation#readme",
"dependencies": {
"colors": "^1.4.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"diff": "^4.0.2"
}
}