-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 982 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
42
{
"name": "lirc2mqtt",
"description": "Connect LIRC to MQTT",
"author": "Sebastian Raff <[email protected]> (https://github.com/hobbyquaker)",
"license": "MIT",
"version": "1.1.1",
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"preferGlobal": true,
"bin": "./index.js",
"dependencies": {
"lirc-client": "^1.0.0",
"mqtt": "^2.8.2",
"yalm": "^4.0.2",
"yargs": "^8.0.2"
},
"keywords": [
"mqtt",
"smarthome",
"iot",
"lirc",
"infrared",
"remote",
"control"
],
"repository": "https://github.com/hobbyquaker/lirc2mqtt",
"scripts": {
"test": "camo-purge ; xo --space 4 --ignore test.js && nyc mocha test.js && nyc report --reporter=text-lcov | coveralls --force"
},
"devDependencies": {
"camo-purge": "latest",
"coveralls": "latest",
"lirc-simulator": "latest",
"mocha": "latest",
"nyc": "latest",
"should": "latest",
"stream-splitter": "latest",
"xo": "latest"
}
}