-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 1.93 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
{
"name": "node-red-contrib-hapcan",
"description": "Set of nodes for HAPCAN (home automation project based on CAN bus).",
"version": "2.8.0",
"dependencies": {},
"keywords": [
"node-red",
"hapcan",
"home-automation",
"iot",
"can-bus",
"relay",
"blind",
"dimmer",
"button",
"led",
"rtc",
"ir",
"infrared",
"receive",
"send",
"temperature",
"thermostat",
"open collector",
"output"
],
"homepage": "https://github.com/Onixarts/node-red-contrib-hapcan",
"bugs": {
"url": "https://github.com/Onixarts/node-red-contrib-hapcan/issues",
"email": "[email protected]"
},
"main": "settings.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.3.2",
"node-red": "^1.2.9",
"node-red-node-test-helper": "^0.2.7",
"should": "^13.2.3",
"sinon": "^10.0.0"
},
"author": {
"name": "Bartosz Rosa",
"email": "[email protected]",
"url": "https://onixarts.pl"
},
"contributors": [
{
"name": "dryma",
"url": "https://github.com/dryma"
},
{
"name": "mariusz-n",
"url": "https://github.com/mariusz-n"
},
{
"name": "engee974",
"url": "https://github.com/engee974"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Onixarts/node-red-contrib-hapcan"
},
"engines": {
"node": ">=8.9.4"
},
"license": "ISC",
"node-red": {
"nodes": {
"blind": "blind.js",
"button": "button.js",
"dimmer": "dimmer.js",
"ir": "ir.js",
"relay": "relay.js",
"rgb": "rgb.js",
"rtc": "rtc.js",
"state": "state.js",
"temp": "temp.js",
"thermostat": "thermostat.js",
"open-collector": "open-collector.js",
"hapcan-gateway": "hapcan-gateway.js",
"custom": "custom.js"
}
},
"scripts": {
"test": "mocha --exit \"test/**/*_spec.js\""
}
}