forked from hxmelab/node-red-contrib-bosch-shc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.92 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
{
"name": "node-red-contrib-bosch-shc",
"version": "0.3.27",
"description": "Bosch Smart Home Controller (SHC) nodes for Node-Red",
"repository": "https://github.com/hxmelab/node-red-contrib-bosch-shc",
"main": "none",
"scripts": {
"test": "xo",
"lintfix": "xo --fix",
"linter": "xo"
},
"keywords": [
"node-red",
"bosch",
"smart",
"home",
"controller"
],
"author": {
"name": "hxmelab",
"email": "[email protected]"
},
"contributors": [
"Sebastian Raff <[email protected]> https://github.com/hobbyquaker"
],
"license": "MIT",
"node-red": {
"nodes": {
"shc-config": "nodes/shc-config.js",
"shc-device": "nodes/shc-device.js",
"shc-scenario": "nodes/shc-scenario.js",
"shc-fault": "nodes/shc-fault.js"
}
},
"dependencies": {
"bosch-smart-home-bridge": "1.0.4",
"node-dns-sd": "0.4.2"
},
"devDependencies": {
"eslint-plugin-html": "^6.2.0",
"xo": "^0.47.0"
},
"xo": {
"nodeVersion": "12",
"space": 4,
"plugin": "html",
"global": [
"$",
"RED"
],
"extensions": [
"js",
"html"
],
"rules": {
"new-cap": 0,
"no-template-curly-in-string": "warn",
"camelcase": "warn",
"capitalized-comments": 0,
"spaced-comment": 0,
"unicorn/catch-error-name": "warn",
"unicorn/prefer-string-slice": "warn",
"valid-jsdoc": 0,
"eslint-comments/no-unused-disable": 0,
"unicorn/no-array-reduce": 0,
"unicorn/no-array-for-each": 0,
"unicorn/no-lonely-if": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/prefer-module": 0,
"promise/prefer-await-to-then": 0,
"prefer-object-spread": "warn",
"complexity": [
"warn",
30
],
"no-unused-vars": [
2,
{
"args": "after-used",
"argsIgnorePattern": "^_"
}
]
},
"ignore": []
}
}