-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
63 lines (63 loc) · 1.34 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "monitr",
"description": "Node process monitoring tool",
"version": "1.2.2",
"author": "Rohini Harendra <[email protected]>",
"contributors": [
{
"name": "ET",
"email": "[email protected]"
},
{
"name": "Sylvio Marcondes",
"email": "[email protected]"
}
],
"os": [
"linux"
],
"cpu": [
"x64",
"ia32"
],
"repository": {
"type": "git",
"url": "https://github.com/yahoo/monitr.git"
},
"bugs": {
"url": "http://github.com/yahoo/monitr/issues"
},
"keywords": [
"node-monitoring",
"node-status"
],
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/monitr/blob/master/LICENSE"
}
],
"engines": {
"node": ">=0.12"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.22.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"async": "^3.2.6",
"eslint": "^9.13.0",
"eslint-plugin-mocha": "^10.5.0",
"global": "^4.4.0",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"unix-dgram": "^2.0.6"
},
"main": "./lib/monitor.js",
"scripts": {
"pretest": "eslint examples/*.js lib/*js tests/*.js",
"test": "nyc --report-dir artifacts/coverage --reporter text-summary --reporter lcov --cache=false mocha -n expose-gc tests/test-monitor.js"
}
}