-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 828 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 828 Bytes
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
{
"name": "mfcc",
"version": "0.0.3",
"description": "Node.js implementation of the MFCC audio speech analysis algorithm.",
"license": "MIT",
"homepage": "https://github.com/vail-systems/node-mfcc",
"repository": "vail-systems/node-mfcc",
"contributors": [
"Joshua Jung <joshua.p.jung@gmail.com> (http://www.joshjung.com)",
"Ben Bryan <bbryan@vailsys.com>"
],
"engines": {
"node": ">=0.12.0"
},
"main": "index.js",
"files": [
"index.js",
"mfcc.js",
"src",
"test",
"data"
],
"keywords": [
"mfcc",
"mel",
"scale",
"cepstrum",
"coefficients",
"frequency",
"fft",
"audio",
"speech"
],
"dependencies": {
"commander": "^2.8.1",
"dct": "^0.0.3",
"fft-js": "0.0.9",
"signal-windows": "^0.0.1",
"wav": "^1.0.0"
}
}