-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.47 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.47 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "digital-filter",
"version": "2.3.1",
"type": "module",
"sideEffects": false,
"description": "Digital filter design & processing: IIR, FIR, smoothing, adaptive, multirate",
"exports": {
".": "./index.js",
"./core/*.js": "./core/*.js",
"./iir/*.js": "./iir/*.js",
"./fir/*.js": "./fir/*.js",
"./smooth/*.js": "./smooth/*.js",
"./adaptive/*.js": "./adaptive/*.js",
"./multirate/*.js": "./multirate/*.js",
"./plot": "./plot/index.js",
"./plot/*": "./plot/*"
},
"files": [
"index.js",
"core/",
"iir/",
"fir/",
"smooth/",
"adaptive/",
"multirate/",
"plot/"
],
"scripts": {
"test": "node test.js",
"plot": "node plot/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/digital-filter.git"
},
"keywords": [
"dsp",
"digital-filter",
"biquad",
"iir",
"fir",
"butterworth",
"chebyshev",
"elliptic",
"bessel",
"audio",
"signal-processing",
"equalizer",
"filter-design",
"lowpass",
"highpass",
"bandpass",
"notch",
"smoothing",
"adaptive",
"multirate"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/digital-filter/issues"
},
"homepage": "https://github.com/audiojs/digital-filter#readme",
"engines": {
"node": ">=18"
},
"dependencies": {},
"devDependencies": {
"tst": "^9.4.0"
}
}