-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
98 lines (98 loc) · 2.47 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "homebridge-daikin-local",
"version": "1.1.12",
"description": "daikin plugin for homebridge: https://github.com/homebridge/homebridge",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"daikin"
],
"engines": {
"node": "^18.19.1 || ^20.15.1 || ^22.12.0",
"homebridge": "^1.6.1 || ^2.0.0-beta.0"
},
"author": "Christian Brandlehner",
"contributors": [
"@PJCzx Pierre-Julien Cazaux",
"@greensouth",
"@fdegier Fred de Gier",
"@fabiandev Fabian Leutgeb",
"@jmfarrow James Farrow",
"Frank Volkmann",
"@bogdanovskii",
"@caalberts Albert Salim"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cbrandlehner/homebridge-daikin-local.git"
},
"dependencies": {
"superagent": "^10.1.0",
"superagent-throttle": "^1.0.1"
},
"bugs": {
"url": "https://github.com/cbrandlehner/homebridge-daikin-local/issues"
},
"homepage": "https://github.com/cbrandlehner/homebridge-daikin-local#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cbrandlehner"
},
{
"type": "paypal",
"url": "https://paypal.me/CBrandlehner"
}
],
"main": "index.js",
"scripts": {
"lint:json": "for file in config.schema.json sample-config.json package.json; do jsonlint -q $file || exit 1; done",
"pretest": "npm run lint:json",
"test": "xo"
},
"devDependencies": {
"xo": "^0.60.0",
"jsonlint": "^1.6.3"
},
"xo": {
"space": false,
"rules": {
"camelcase": "off",
"capitalized-comments": "off",
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"indent": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-unused-vars": "warn",
"no-useless-escape": "warn",
"no-use-before-define": [
"error",
{
"classes": false
}
],
"no-var": "warn",
"object-shorthand": [
"off",
"always",
{
"ignoreConstructors": true
}
],
"prefer-arrow-callback": "warn",
"prefer-destructuring": "warn",
"promise/prefer-await-to-then": "off",
"quotes": "warn",
"quote-props": "error",
"unicorn/expiring-todo-comments": "off",
"unicorn/no-anonymous-default-export": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-string-replace-all": "warn",
"unicorn/prefer-switch": "warn",
"unicorn/prefer-ternary": "off"
}
}
}