-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
{
"name": "roon-extension-denon",
"version": "2025.8.0",
"description": "Volume Control extension to control Denon/Marantz AV receivers via network.",
"main": "app.js",
"author": "Doc Bobo <boris@pruessmann.org> (https://blog.pruessmann.org/)",
"license": "Apache-2.0",
"dependencies": {
"debug": "^3.1.0",
"denon-client": "^0.2.4",
"fast-xml-parser": "^4.5.1",
"node-fetch": "^2.1.2",
"node-roon-api": "github:roonlabs/node-roon-api#51258392f8bfae3fe218740dda5bc049a822872e",
"node-roon-api-settings": "github:roonlabs/node-roon-api-settings#67cd8ca156c5bcd01ea63833ceaaec6d6a79654d",
"node-roon-api-source-control": "github:roonlabs/node-roon-api-source-control#fab2ba33f2c9249a8c9e69b6dcccfc8f333ab12e",
"node-roon-api-status": "github:roonlabs/node-roon-api-status#504c918d6da267e03fbb4337befa71ca3d3c7526",
"node-roon-api-volume-control": "github:roonlabs/node-roon-api-volume-control#56315d95344c9e0dc98c07c30a2de08727437b1e"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"*.js",
"!node_modules/**",
"!test/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}