-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "homebridge-nuvo",
"version": "2.2.7",
"main": "dist/platform.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Will MacCormack",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"files": [
"dist",
"config.schema.json"
],
"engines": {
"node": ">=0.10.0",
"homebridge": ">=1.0.4"
},
"dependencies": {
"@serialport/parser-readline": ">=10.0.0",
"serialport": "^10.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "10.17.19",
"homebridge": ">=1.0.4",
"rimraf": ">=3.0.2",
"typescript": ">=3.8.3"
},
"description": "This is a homebridge plugin for that allows serial control of nuvo whole home audio systems.",
"bin": {
"nuvo-config": "./dist/cli.js"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/WillMacCormack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Willmac16/homebridge-nuvo.git"
},
"bugs": {
"url": "https://github.com/Willmac16/homebridge-nuvo/issues"
},
"homepage": "https://github.com/Willmac16/homebridge-nuvo#readme"
}