-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 887 Bytes
/
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
{
"name": "node-red-contrib-lutron",
"version": "1.2.0",
"description": "A node for communicating with Lutron Caseta Pro Hub",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"node-red": {
"nodes": {
"lutron-config": "lutron-config.js",
"lutron-status": "lutron-status.js",
"lutron-control": "lutron-control.js"
}
},
"repository": {
"type": "git",
"url": "git@github.com:sushilks/node-red-contrib-lutron.git"
},
"keywords": [
"lutron",
"caseta",
"dimmer",
"light",
"switch",
"node-red",
"node"
],
"author": "Sushil Singh <sushilks@gmail.com>",
"license": "Apache 2.0",
"dependencies": {
"events": "^3.2.0",
"telnet-client": "^1.4.6"
},
"maintainers": [
{
"name": "Sushil Singh",
"email": "sushilks@gmail.com"
}
]
}