-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
62 lines (62 loc) · 1.57 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
55
56
57
58
59
60
61
62
{
"name": "iobroker.influxdb",
"description": "Log states in InfluxDB",
"version": "4.0.3",
"author": "bluefox <[email protected]>",
"contributors": [
"bluefox <[email protected]>",
"Apollon77",
"Excodibur"
],
"homepage": "https://github.com/ioBroker/ioBroker.influxdb",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.influxdb"
},
"engines": {
"node": ">=16"
},
"keywords": [
"ioBroker",
"log data",
"home automation"
],
"optionalDependencies": {},
"dependencies": {
"@influxdata/influxdb-client": "^1.33.2",
"@influxdata/influxdb-client-apis": "^1.33.2",
"@iobroker/adapter-core": "^3.1.4",
"influx": "^4.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-dev": "^1.3.0",
"mocha": "^10.7.3",
"chai": "^4.4.1"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.influxdb/issues"
},
"main": "main.js",
"files": [
"admin/",
"docs/",
"lib/",
"io-package.json",
"LICENSE",
"RetentionPolicies.md",
"main.js"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"build:lang": "gulp adminWords2languages",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"translate": "translate-adapter"
},
"license": "MIT"
}