forked from TritonDataCenter/node-snmpjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 880 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
{
"author": "Keith M Wesolowski <[email protected]>",
"name": "snmpjs",
"description": "Simple Network Management Protocol toolkit",
"version": "0.1.8",
"repository": {
"type": "git",
"url": "git://github.com/joyent/node-snmpjs.git"
},
"bugs": {
"url" : "http://github.com/joyent/node-snmpjs/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=0.6.9"
},
"dependencies": {
"jison": "0.3",
"asn1": "~0.2.2",
"bunyan": "~0.21",
"dtrace-provider": "~0.4"
},
"devDependencies": {
"tap": "~0.4"
},
"scripts": {
"install": "jison -o lib/parser.js lib/snmp.jison",
"update": "jison -o lib/parser.js lib/snmp.jison",
"pretest": "which gjslint; if [[ \"$?\" = 0 ]] ; then gjslint --nojsdoc -r lib -r tst; else echo \"Missing gjslint. Skipping lint\"; fi",
"test": "./node_modules/.bin/tap ./test",
"start": "node agent.js"
}
}