-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (37 loc) · 1.43 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
{
"name": "@stoneydsp/biquads",
"version": "1.2.2.174",
"main": "index.js",
"author": {
"email": "nathanjhood@googlemail.com",
"name": "Nathan J. Hood",
"url": "https://github.com/nathanjhood"
},
"repository": {
"url": "https://github.com/nathanjhood/Biquads.git",
"type": "git"
},
"readme": "https://github.com/nathanjhood/Biquads/README.md",
"license": "GPL-3.0",
"scripts": {
"configure": "cmake -S . -B ./build -DSTONEYDSP_BIQUADS_BUILD_TESTS:BOOL=TRUE -DCMAKE_INSTALL_PREFIX:PATH=./install -G Ninja",
"reconfigure": "cmake --fresh -S . -B ./build -DSTONEYDSP_BIQUADS_BUILD_TESTS:BOOL=TRUE -DCMAKE_INSTALL_PREFIX:PATH=./install -G Ninja",
"build": "cmake --build ./build",
"postbuild": "cmake --install ./build",
"ctest": "ctest --test-dir ./build --rerun-failed --output-on-failure --verbose",
"cpack": "cpack --config ./build/CPackSourceConfig.cmake -B ./install",
"cdist": "cpack --config ./build/CPackConfig.cmake -B ./install",
"sys:config": "cmake --fresh -S . -B ./build -DSTONEYDSP_BIQUADS_BUILD_TESTS:BOOL=TRUE -GNinja",
"sys:install": "cmake --build ./build && cmake --build ./build --target install"
},
"engines": {
"node": ">=16.8.0"
},
"dependencies": {
"clang-format": "^1.8.0"
},
"devDependencies": {
"@types/node": "^20.11.14",
"typescript": "^5.3.3"
}
}