-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 836 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
{
"name": "node-red-contrib-graphite",
"version": "1.0.0",
"description": "Node-RED node that sends metrics to Graphite over the UDP plaintext protocol",
"main": "graphite/graphite.js",
"node-red": {
"nodes": {
"graphite": "graphite/graphite.js"
}
},
"engines": { "node" : ">=4.0.0" },
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/myfreeweb/node-red-contrib-graphite"
},
"keywords": [
"node-red",
"node-red-contrib",
"graphite",
"metrics"
],
"author": "Greg V <greg@unrelenting.technology>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/myfreeweb/node-red-contrib-graphite/issues"
},
"homepage": "https://github.com/myfreeweb/node-red-contrib-graphite#readme",
"dependencies": {
"graphite-udp": "^1.2.0"
}
}