-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 839 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
{
"name": "node-red-contrib-cec",
"version": "1.0.2",
"description": "Node-Red contributed nodes for interacting with cec-enabled devices on a HDMI switch, such as a TV or digital receiver",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"node-red": {
"nodes": {
"cec-config": "cec/cec-config.js",
"cec-state": "cec/cec-state.js",
"cec-in": "cec/cec-in.js",
"cec-out": "cec/cec-out.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/damoclark/node-red-contrib-cec.git"
},
"keywords": [
"node-red",
"cec",
"hdmi"
],
"author": "Damien Clark",
"license": "GPL-3.0",
"dependencies": {
"@damoclark/cec-monitor": "^1.0.10-release.3",
"command-exists": "^1.2.2",
"pathval": "^1.1.0"
}
}