-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
52
53
{
"name": "vibrato.js",
"version": "0.1.0",
"description": "Digital signal processing framework for the JavaScript programming language.",
"type": "module",
"exports": {
".": "./lib/js/index.js",
"./core": "./lib/js/core.js",
"./core.node": "./lib/js/core.node.js"
},
"scripts": {
"clean": "node ./scripts/clean.js",
"build-wa": "node ./scripts/build-wa.js",
"prepare": "npm run clean && npm run build-wa && npx tsc --project ./tsconfig.prepare.json && node ./scripts/finalize.js",
"pretest": "npm run clean && npm run build-wa && npx tsc",
"test": "nyc --reporter=html -- mocha --recursive \"./out/test/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghadeeras/vibrato.js.git"
},
"keywords": [
"dsp",
"digital-signal-processing",
"audio-processing",
"music-synthesis",
"fast-fourier-transform",
"signal-analysis"
],
"author": "Ghadeer Abou-Saleh",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ghadeeras/vibrato.js/issues"
},
"homepage": "https://github.com/ghadeeras/vibrato.js#readme",
"files": [
"lib"
],
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.6",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"seedrandom": "^3.0.5",
"typescript": "^5.7.2"
},
"dependencies": {
"binaryen": "^120.0.0"
}
}