-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.15 KB
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
46
47
48
49
50
51
52
53
{
"name": "fourier-transform",
"version": "2.3.0",
"description": "Minimalistic and efficient FFT implementation",
"type": "module",
"sideEffects": false,
"exports": {
".": "./index.js",
"./stft": "./stft.js"
},
"scripts": {
"test": "node --test test/rfft.js test/fft.js test/stft.js",
"benchmark": "node benchmark/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scijs/fourier-transform.git"
},
"files": [
"index.js",
"stft.js"
],
"keywords": [
"fourier",
"dsp",
"fft",
"rfft",
"ifft",
"cfft",
"dft",
"stft",
"istft",
"short-time-fourier-transform"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scijs/fourier-transform/issues"
},
"homepage": "https://github.com/scijs/fourier-transform#readme",
"devDependencies": {
"als-fft": "^3.4.1",
"dsp.js": "^1.0.1",
"fft-js": "^0.0.12",
"fft.js": "^4.0.4",
"kissfft-wasm": "^2.0.1",
"ml-fft": "^1.3.5",
"ndarray": "^1.0.19",
"ndarray-fft": "^1.0.3",
"ooura": "^2.1.6",
"tst": "^9.4.0"
}
}