-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "node-core-audio",
"version": "0.5.1",
"author": "Mike Vegeto <[email protected]> (http://mikevegeto.com/)",
"contributors": [
"Marc J. Schmidt <[email protected]> (http://marcjschmidt.de/)",
"Jeremiah Senkpiel <[email protected]> (http://searchbeam.jit.su/)",
"Daniel Church <[email protected]> (https://github.com/anprogrammer/)"
],
"dependencies": {
"audio-streamer": ">= 0.1.0",
"fft": "~0.2.1",
"nan": "^2.14.2",
"node-waveheader": "git://github.com/mrose17/node-waveheader.git",
"portfinder": "0.2.1"
},
"description": "Core native node.js audio functionality, including sound card access and audio streaming",
"main": "./node-core-audio",
"scripts": {
"test": "node test/test.js"
},
"engines": {
"node": ">=0.12.0"
},
"keywords": [
"audio",
"dsp",
"processing",
"portaudio",
"sound",
"synth",
"signal",
"streaming",
"buffer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZECTBynmo/node-core-audio.git"
}
}