forked from gw-wiscon/homebridge-onkyo-avr
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
81 lines (81 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "homebridge-onkyo",
"version": "2022.18.1",
"description": "Homebridge plugin for Onkyo Receivers",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore package.json config.schema.json",
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToddGreenfield/homebridge-onkyo.git"
},
"dependencies": {
"polling-to-event": "^2.1.0",
"async": "*",
"js-yaml": "*"
},
"devDependencies": {
"eslint": ">=7.30.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-unicorn": "latest",
"eslint-plugin-json": "^3.0.0",
"xo": ">=0.47.0"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"onkyo-avr",
"onkyo"
],
"engines": {
"node": ">=14.19.1",
"homebridge": ">=1.4.0"
},
"author": "gw-wiscon <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ToddGreenfield/homebridge-onkyo/issues"
},
"homepage": "https://github.com/ToddGreenfield/homebridge-onkyo#readme",
"xo": {
"space": false,
"ignores": "eiscp",
"rules": {
"unicorn/prefer-module": "warn",
"unicorn/no-new-array": "warn",
"unicorn/no-array-for-each": "warn",
"camelcase": "off",
"kebabCase": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-useless-escape": "warn",
"indent": "off",
"quotes": "warn",
"capitalized-comments": "off",
"no-var": "warn",
"prefer-destructuring": "off",
"prefer-arrow-callback": "warn",
"object-shorthand": [
"off",
"always",
{
"ignoreConstructors": true
}
],
"quote-props": "error",
"no-unused-vars": "warn",
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"no-use-before-define": [
"error",
{
"classes": false
}
]
}
}
}