-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.02 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
{
"name": "audio-devices",
"version": "0.0.7",
"description": "set/get audio devices on Windows",
"main": "index.js",
"engines": {
"node": ">=6"
},
"os": [
"win32"
],
"scripts": {
"test": "jest && codecov",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashleymarkfletcher/audio-devices.git"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/vendor/**",
"!index.js",
"!example.js"
]
},
"keywords": [
"audio",
"device",
"windows",
"sound"
],
"author": "Ashley Fletcher <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashleymarkfletcher/audio-devices/issues"
},
"homepage": "https://github.com/ashleymarkfletcher/audio-devices#readme",
"dependencies": {
"codecov": "^3.0.0",
"nircmd": "^2.0.0"
},
"devDependencies": {
"jest": "^21.2.1"
}
}