-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 949 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
{
"name": "node-red-contrib-prometheus-exporter",
"version": "1.0.5",
"description": "A NodeRED node which allows exporting Prometheus metrics from within flows.",
"keywords": [
"node-red",
"prometheus",
"telegraf"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Docoyo/node-red-contrib-prometheus-exporter.git"
},
"author": "docoyo",
"contributors": [
{
"name": "Masanori Fujita"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Docoyo/node-red-contrib-prometheus-exporter/issues"
},
"homepage": "https://github.com/Docoyo/node-red-contrib-prometheus-exporter#readme",
"node-red": {
"nodes": {
"prometheus-exporter": "prometheus-exporter/prometheus-exporter.js",
"prometheus-metric-config": "prometheus-exporter/prometheus-metric-config.js"
}
},
"dependencies": {
"prom-client": "^13.1.0"
}
}