-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 881 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
43
44
45
{
"name": "influx4mqtt",
"version": "1.0.0",
"description": "Insert incoming MQTT values into InfluxDB. Follows mqtt-smarthome architecture.",
"main": "index.js",
"scripts": {
"test": "camo-purge ; xo"
},
"author": "Sebastian 'hobbyquaker' Raff <hobbyquaker@gmail.com>",
"license": "MIT",
"dependencies": {
"mqtt": "^2.15.1",
"request": "^2.83.0",
"yalm": "^4.1.0",
"yargs": "^11.0.0"
},
"bin": {
"influx4mqtt": "./index.js"
},
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/influx4mqtt"
},
"keywords": [
"mqtt",
"smarthome",
"history",
"influxdb",
"charts",
"grafana",
"time",
"series"
],
"devDependencies": {
"camo-purge": "latest",
"xo": "latest"
},
"xo": {
"space": 4
}
}