forked from richardeoin/nodejs-fft-windowing
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 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
{
"name": "fft-windowing-ts",
"version": "0.2.7",
"description": "Applies a windowing function to an array of data, making it ready to be FFT'd.",
"author": "Richard Eoin <richardeoin@gmail.com>",
"main": "dist/windowing",
"contributors": [
{
"name": "Khem Sattaur",
"email": "khem@eleven-i.com",
"url": "https://eleven-i.com"
}
],
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
},
"scripts": {
"test": "node tests/fft-windowing-tests.js",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"clean": "rm -rf dist"
},
"files": [
"dist/windowing.js",
"dist/windowing.d.ts"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"parser": "@typescript-eslint/parser"
}
},
"keywords": [
"fft",
"fourier",
"windowing",
"hann",
"hamming",
"cosine",
"lanczos",
"gaussian",
"tukey",
"blackman",
"exact_blackman",
"kaiser",
"nuttall",
"blackman_harris",
"blackman_nuttall",
"flat_top"
],
"repository": {
"type": "git",
"url": "https://github.com/eleven-i/nodejs-fft-windowing"
},
"license": "MIT"
}