-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 926 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
34
35
36
37
38
39
40
41
{
"name": "jnrpe",
"version": "1.0.0-alpha.9",
"description": "Javascript implementation of NRPE (Nagios Remote Plugin Executor)",
"main": "./jnrpe.js",
"scripts": {
"test": "mocha",
"start": "node ./jnrpe.js"
},
"author": "Massimiliano Ziccardi <massimiliano.ziccardi@gmail.com>",
"keywords": [
"nagios",
"icinga",
"monitoring",
"remote",
"nrpe"
],
"license": "Apache-2.0",
"bin": {
"jnrpe": "./jnrpe.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ziccardi/jsnrpe.git"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"proxyquire": "^2.0.1",
"sinon": "^6.1.5"
},
"dependencies": {
"commander": "^2.17.1",
"jnrpe-lib": "^1.0.0-alpha.3",
"jnrpe-plugins": "^1.0.0-alpha.2",
"yargs": "^12.0.1"
}
}