-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 924 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 924 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
{
"name": "fourier-transform",
"version": "2.1.0",
"description": "Minimalistic and efficient FFT implementation",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "node --test test.js",
"benchmark": "node benchmark/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scijs/fourier-transform.git"
},
"keywords": [
"fourier",
"dsp",
"fft",
"rfft",
"dft"
],
"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"
}
}