-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 753 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 753 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
{
"name": "fft-windowing",
"version": "0.1.4",
"description": "Applies a windowing function to an array of data, making it ready to be FFT'd.",
"main": "windowing.js",
"author": "Richard Eoin <richardeoin@gmail.com>",
"devDependencies": {
"plotter": "0.3.x",
"underscore": "1.4.x"
},
"scripts": {
"test": "node tests/fft-windowing-tests.js"
},
"keywords": [
"fft",
"fourier",
"windowing",
"hann",
"hamming",
"cosine",
"lanczos",
"gaussian",
"tukey",
"blackman",
"exact_blackman",
"kaiser",
"nuttall",
"blackman_harris",
"blackman_nuttall",
"flat_top"
],
"repository": {
"type": "git",
"url": "https://github.com/richardeoin/nodejs-fft-windowing"
},
"license": "MIT",
"engine": "node >= 0.9.4"
}