-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
165 lines (165 loc) · 5.06 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "node-red-contrib-ccu",
"version": "3.4.2",
"license": "MIT",
"main": "none",
"keywords": [
"node-red",
"homematic",
"ccu",
"bidcos",
"cuxd",
"smart home automation",
"eq-3"
],
"author": {
"name": "Sebastian Raff",
"email": "hobbyquaker@gmail.com"
},
"bugs": {
"url": "https://github.com/rdmtc/node-red-contrib-ccu/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Hypnos3",
"email": "hypnos3@online.de"
},
{
"name": "psi-4ward",
"email": "gh@psi.cx"
},
{
"name": "Timo Wendt https://github.com/twendt"
},
{
"name": "Konrad Mattheis https://github.com/konne"
},
{
"name": "Simon Christmann https://github.com/dersimn",
"email": "simon@christmann.email"
},
{
"name": "Konrni https://github.com/Konrni"
},
{
"name": "Bjo-Frei https://github.com/bjo-frei"
},
{
"name": "Sineos https://github.com/Sineos"
}
],
"dependencies": {
"binrpc": "^3.3.1",
"buffer-base62": "^0.1.2",
"hm-discover": "^1.1.3",
"homematic-rega": "^1.5.2",
"homematic-xmlrpc": "^1.0.2",
"mqtt-wildcard": "^3.0.9",
"nextport": "^1.0.0",
"obj-ease": "^1.0.1",
"promise.prototype.finally": "^3.1.2",
"string-similarity": "^4.0.2"
},
"deprecated": false,
"description": "Node-RED Nodes for the Homematic CCU",
"devDependencies": {
"camo-purge": "^1.0.2",
"coveralls": "^3.1.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-promise": "^4.3.1",
"hm-simulator": "^0.1.1",
"husky": "^4.2.5",
"mocha": "^8.1.0",
"node-red": "^1.1.2",
"node-red-node-test-helper": "^0.2.5",
"nyc": "^15.1.0",
"should": "^13.2.3",
"xo": "^0.32.1"
},
"engines": {
"node": ">= 10.0.0"
},
"homepage": "https://github.com/rdmtc/node-red-contrib-ccu#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lintonly",
"pre-push": "npm run lintonly && npm run testonly"
}
},
"node-red": {
"nodes": {
"ccu-connection": "nodes/ccu-connection.js",
"ccu-value": "nodes/ccu-value.js",
"ccu-rpc-event": "nodes/ccu-rpc-event.js",
"ccu-set-value": "nodes/ccu-set-value.js",
"ccu-rpc": "nodes/ccu-rpc.js",
"ccu-signal": "nodes/ccu-signal.js",
"ccu-display": "nodes/ccu-display.js",
"ccu-sysvar": "nodes/ccu-sysvar.js",
"ccu-program": "nodes/ccu-program.js",
"ccu-script": "nodes/ccu-script.js",
"ccu-poll": "nodes/ccu-poll.js",
"ccu-get-value": "nodes/ccu-get-value.js",
"ccu-switch": "nodes/ccu-switch.js",
"ccu-hm2mqtt": "nodes/ccu-mqtt.js",
"ccu-alexa": "nodes/ccu-alexa.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmtc/node-red-contrib-ccu.git"
},
"scripts": {
"checkgit": "([[ $(git rev-parse --abbrev-ref HEAD) == \"master\" ]] && git diff --exit-code && git diff --cached --exit-code && git diff --exit-code origin/master..master)",
"lintfix": "xo --fix",
"lintonly": "xo",
"postpublish": "git tag v$(jq -r '.version' package.json) && git push --no-verify --tags",
"prepublishOnly": "npm run checkgit --silent",
"test": "camo-purge; xo && nyc mocha \"test/**/*_spec.js\" --exit && nyc report --reporter=text-lcov | coveralls --force",
"testcov": "nyc mocha \"test/**/*_spec.js\" --exit",
"testonly": "mocha \"test/**/*_spec.js\" --exit"
},
"xo": {
"space": 4,
"plugins": [
"html",
"promise"
],
"global": [
"$",
"RED"
],
"extensions": [
"js",
"html"
],
"rules": {
"promise/catch-or-return": [
"warn",
{
"allowThen": true,
"allowFinally": true
}
],
"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,
"promise/prefer-await-to-then": "warn",
"prefer-object-spread": "warn",
"unicorn/prevent-abbreviations": "warn",
"unicorn/prefer-number-properties": "warn",
"unicorn/no-reduce": "warn"
},
"ignore": [
"nodes/ccu-switch.js",
"nodes/ccu-switch.html",
"paramsets-join.js"
]
}
}