12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "net-snmp",
- "version": "3.8.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": "^5.16.0",
- "getopts": "*"
- },
- "contributors": [
- {
- "name": "Stephen Vickers",
- "email": "stephen.vickers@nospaceships.com"
- },
- {
- "name": "NoSpaceships Ltd",
- "email": "hello@nospaceships.com"
- },
- {
- "name": "Mark Abrahams",
- "email": "mark@abrahams.co.nz"
- }
- ],
- "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 <mark@abrahams.co.nz>",
- "license": "MIT",
- "scripts": {
- "lint": "./node_modules/.bin/eslint . ./**/*.js"
- }
- }
|