-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "node-alsa-cardinfo",
"version": "1.0.2",
"main": "main.js",
"keywords": [
"libasound",
"alsa",
"playback",
"capture",
"audio",
"card",
"capabilities"
],
"scripts": {
"test": "mocha test/tests.js",
"test:ci": "mocha test/ciTests.js",
"build:dev": "node-gyp build --debug",
"build": "node-gyp build",
"rebuild:dev": "node-gyp rebuild --debug",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean"
},
"engines": {
"node": ">=8.0.0"
},
"description": "Get the playback and/or capture parameters (sample rates, byte formats etc.) of an ALSA card.",
"repository": "github:dmooney65/node-alsa-cardinfo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmooney65/node-alsa-cardinfo/issues"
},
"homepage": "https://github.com/dmooney65/node-alsa-cardinfo#readme",
"devDependencies": {
"mocha": "^5.2.0"
},
"dependencies": {
"bindings": "^1.3.0"
}
}