-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
46
47
48
49
50
51
{
"name": "fourier-transform",
"version": "1.1.2",
"description": "Minimalistic and efficient FFT implementation",
"main": "index.js",
"scripts": {
"test": "node test.js",
"test:browser": "budo --open test.js",
"benchmark": "node benchmark/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scijs/fourier-transform.git"
},
"keywords": [
"fourier",
"dsp",
"fft",
"dft",
"asm.js"
],
"author": "Dima Yv <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scijs/fourier-transform/issues"
},
"homepage": "https://github.com/scijs/fourier-transform#readme",
"devDependencies": {
"almost-equal": "^1.1.0",
"aureooms-js-array": "^3.1.0",
"aureooms-js-complex": "^1.2.0",
"aureooms-js-fft": "^1.0.1",
"aureooms-js-number": "^2.1.0",
"aureooms-js-random": "^1.0.2",
"digitalsignals": "^1.0.0",
"dsp-fft": "0.0.0-semantically-released",
"dsp.js": "github:corbanbrook/dsp.js",
"dspjs": "^1.0.0",
"fft": "^0.2.1",
"fft-js": "0.0.9",
"fili": "^1.2.1",
"fourier": "^0.1.2",
"frequencyjs": "0.0.4",
"ml-fft": "^1.0.5",
"ndarray": "^1.0.18",
"ndarray-fft": "^1.0.2",
"stft": "0.0.0",
"benchmark": "^2.1.3",
"tape": "^4.6.3"
}
}