-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1020 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
42
43
{
"name": "jnrpe-plugins",
"version": "1.0.0-alpha.2",
"description": "Plugin package for JNRPE",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nagios",
"icinga",
"monitoring",
"remote",
"nrpe",
"jnrpe"
],
"author": "Massimiliano Ziccardi <[email protected]>",
"license": "Apache License, Version 2.0",
"repository": {
"type": "git",
"url": "git://github.com/ziccardi/jsnrpe_plugins.git"
},
"extensions": {
"jnrpe:plugin": {
"_NRPE_CHECK": "./lib/nrpe-check-plugin",
"CHECK_TEST": "./lib/check-test-plugin",
"CHECK_NATIVE": "./lib/check-native"
}
},
"dependencies": {
"command-line-args": "^5.0.2",
"quote-unquote": "^1.0.0",
"split-string": "^6.0.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-strongloop": "^2.1.0"
}
}