-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.05 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
{
"name": "rpi2mqtt",
"description": "Connect a RaspberryPi 1-Wire and GPIOs to MQTT",
"author": "Sebastian 'Hobbyquaker' Raff <hq@ccu.io>",
"contributors": [
"Tobias Liebig http://etobi.de"
],
"license": "MIT",
"version": "2.0.0",
"preferGlobal": true,
"bin": {
"rpi2mqtt": "./index.js"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"async": "^2.5.0",
"mkdirp": "^0.5.1",
"mqtt": "^2.13.1",
"onoff": "^1.1.8",
"yalm": "^4.1.0",
"yargs": "^10.0.3"
},
"keywords": [
"mqtt",
"smarthome",
"iot",
"raspberrypi",
"1-wire",
"gpio",
"ds1820",
"temperature sensor"
],
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/rpi2mqtt"
},
"scripts": {
"test": "camo-purge; xo"
},
"bugs": {
"url": "https://github.com/hobbyquaker/rpi2mqtt/issues"
},
"homepage": "https://github.com/hobbyquaker/rpi2mqtt",
"main": "index.js",
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"xo": {
"space": 4
}
}