-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 980 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 980 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
42
43
44
45
46
47
48
49
50
{
"name": "ndarray-fft",
"version": "1.0.3",
"description": "FFT for ndarrays",
"main": "fft.js",
"directories": {
"test": "test"
},
"dependencies": {
"bit-twiddle": "^1.0.2",
"ndarray": "^1.0.15",
"ndarray-ops": "^1.2.2",
"cwise": "^1.0.4",
"typedarray-pool": "^1.0.0"
},
"devDependencies": {
"almost-equal": "0.0.0",
"array-almost-equal": "^1.0.0",
"tape": "^3.0.0",
"zeros": "0.0.0"
},
"scripts": {
"test": "node test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mikolalysenko/ndarray-fft.git"
},
"keywords": [
"ndarray",
"fft",
"fourier",
"transform",
"convolution",
"bluestein",
"radix",
"2",
"image",
"volume",
"filter",
"signal"
],
"author": "Mikola Lysenko",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "1847ab09f0f2fdc1103bca773b7bc0b0bd55b12d",
"browserify": {
"transform": "cwise"
}
}