-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "net-snmp",
"version": "3.15.3",
"description": "JavaScript implementation of the Simple Network Management Protocol (SNMP)",
"main": "index.js",
"directories": {
"example": "example"
},
"dependencies": {
"asn1-ber": "^1.2.1",
"smart-buffer": "^4.1.0"
},
"devDependencies": {
"eslint": "^9.9.1",
"getopts": "*"
},
"contributors": [
{
"name": "Stephen Vickers",
"email": "[email protected]"
},
{
"name": "NoSpaceships Ltd",
"email": "[email protected]"
},
{
"name": "Mark Abrahams",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/markabrahams/node-net-snmp.git"
},
"keywords": [
"snmp",
"snmpv1",
"snmpv2",
"snmpv2c",
"snmpv3",
"net",
"network",
"mon",
"monitor",
"monitoring"
],
"author": "Mark Abrahams <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . ./**/*.js"
}
}