-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 910 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 910 Bytes
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-node-snmp",
"version" : "2.1.0",
"description" : "A Node-RED node that gets and sets SNMP oid values. Supports v1, v2c and v3",
"dependencies" : {
"net-snmp" : "^3.26.0"
},
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes.git",
"directory" : "tree/master/io/snmp"
},
"license": "Apache-2.0",
"keywords": [ "node-red", "snmp", "oid", "snmpv3" ],
"node-red" : {
"nodes" : {
"snmp": "snmp.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "dceejay@gmail.com",
"url": "http://nodered.org"
},
"contributors": [
{ "name": "Mika Karaila" },
{ "name": "Bryan Malyn" },
{ "name": "Steve-Mcl" },
{ "name": "Andres" },
{ "name": "@echobops" }
]
}