-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
42 lines (42 loc) · 927 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": "node-red-contrib-influxdb",
"version": "0.7.0",
"description": "Node-RED nodes to save and query data from an influxdb time series database",
"main": "influxdb.js",
"scripts": {
"test": "echo \"Error: no test specified yet!\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mblackstock/node-red-contrib-influxdb"
},
"contributors": [
{
"name": "Mike Blackstock",
"email": "[email protected]",
"url": "http://mblackstock.com"
},
{
"name": "Alberto Armijo",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"keywords": [
"node-red",
"influxdb"
],
"node-red": {
"nodes": {
"influxdb": "influxdb.js"
}
},
"dependencies": {
"influx": "~5.9.3",
"@influxdata/influxdb-client": "~1.33.2",
"lodash": "~4.17.21"
},
"engines": {
"node": ">=10"
}
}