-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "systemhealth",
"version": "2.0.0",
"description": "Node module to run simple custom checks for your machine or it's connections. It will use redis-heartbeat to send the current state to redis.",
"keywords": [
"systemhealth",
"system",
"health",
"monitor",
"redis",
"status",
"heartbeat"
],
"homepage": "https://github.com/mpneuried/systemhealth",
"bugs": "https://github.com/mpneuried/systemhealth/issues",
"author": {
"name": "mpneuried",
"email": "",
"url": "https://github.com/systemhealth"
},
"main": "./index.js",
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mpneuried/systemhealth.git"
},
"scripts": {
"test": "COFFEECOV_INIT_ALL=false mocha --compilers coffee:coffeescript/register --require coffee-coverage/register-istanbul _src/test/**.coffee -R spec",
"test-compiled": "mocha test/**.js -R spec",
"test-builded": "grunt build test",
"build": "grunt build"
},
"license": "MIT",
"dependencies": {
"async": "3.2.x",
"lodash": "4.17.x",
"mpbasic": "0.0.x"
},
"devDependencies": {
"coffee-coverage": "3.x",
"coffeescript": "2.x",
"coveralls": "3.0.x",
"grunt": "1.0.x",
"grunt-contrib-clean": "1.1.x",
"grunt-contrib-coffee": "2.x",
"grunt-contrib-watch": "1.x",
"grunt-docker": "0.0.x",
"grunt-include-replace": "5.x",
"grunt-mocha-cli": "4.x",
"istanbul": "0.4.x",
"mocha": "5.1.x",
"should": "13.x"
}
}