forked from nicoduj/homebridge-harmony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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
53
54
55
56
57
58
59
60
61
{
"name": "homebridge-harmony",
"version": "1.6.3",
"author": "Nicolas Dujardin",
"description": "Publish your harmony activities as homekit accessories",
"main": "index.js",
"scripts": {
"test": "node index.js && echo \"No syntax errors! (node $(node -v))\""
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/nicoduj/homebridge-harmony.git"
},
"engines": {
"homebridge": ">=1.0.4",
"node": ">=10.20.0"
},
"keywords": [
"homebridge-plugin",
"harmony",
"websocket",
"harmonyhub",
"homekit",
"category-media"
],
"dependencies": {
"@harmonyhub/discover": "^1.0.8",
"harmony-websocket": "^1.5.5"
},
"bugs": {
"url": "https://github.com/nicoduj/homebridge-harmony/issues"
},
"homepage": "https://github.com/nicoduj/homebridge-harmony#readme",
"devDependencies": {
"husky": "^3.1.0",
"prettier": "2.0.0",
"pretty-quick": "^2.0.0"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/nicoduj/"
},
{
"type": "paypal",
"url": "https://www.paypal.me/nicoduj/"
}
]
}