-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "homebridge-influx",
"version": "0.0.5",
"description": "A Homebridge plugin that exposes latest values from an InfluxDB instance.",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"homebridge",
"influxdb",
"temperature",
"humidity"
],
"scripts": {
"lint": "eslint index.js",
"dev": "npm run lint && npm link && nodemon",
"publish": "npm run lint"
},
"engines": {
"node": ">=12.0.0",
"homebridge": ">=0.4.5"
},
"author": "Christian Kellner (https://github.com/orangecoding)",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/orangecoding/homebridge-influx.git"
},
"dependencies": {
"influx": "5.7.0"
},
"devDependencies": {
"eslint": "7.21.0",
"babel-eslint": "10.1.0",
"homebridge": "1.3.3",
"lint": "0.7.0",
"nodemon": "2.0.7"
},
"bugs": {
"url": "https://github.com/orangecoding/homebridge-influx/issues"
},
"homepage": "https://github.com/orangecoding/homebridge-influx#readme",
"main": "index.js"
}