This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
87 lines (87 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"author": "Iván Loire <[email protected]> (http://iloire.com/)",
"name": "watchmen",
"scripts": {
"start": "node run-web-server",
"build": "bower install && gulp build",
"build:watch": "gulp watch",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 5000",
"postcoverage": "kill `cat test/redis.pid`",
"posttest": "kill `cat test/redis.pid`",
"precoverage": "redis-server test/redis.test.conf",
"pretest": "redis-server test/redis.test.conf",
"test": "mocha -R list test/*.js"
},
"description": "A simple service monitor",
"version": "3.3.1",
"homepage": "http://letsnode.com",
"repository": {
"type": "git",
"url": "git://github.com/iloire/watchmen.git"
},
"engines": {
"node": ">=0.10"
},
"keywords": [
"monitor",
"ping",
"service",
"watchmen"
],
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.12.4",
"colors": "^1.1.0",
"commander": "^2.8.1",
"compression": "^1.4.3",
"concat-stream": "^1.4.8",
"connect-redis": "^3.0.1",
"debug": "^2.2.0",
"ejs": "2.3.x",
"errorhandler": "^1.3.6",
"express": "^4.12.3",
"express-ejs-layouts": "^1.1.0",
"express-session": "^1.10.4",
"lodash": "^3.8.0",
"method-override": "2.3.x",
"moment": "^2.10.3",
"passport": "^0.2.1",
"passport-google-oauth2": "0.1.x",
"q": "^1.3.0",
"redis": "^0.12.1",
"shortid": "^2.2.2",
"stream-spigot": "^3.0.5",
"timestream-aggregates": "^0.1.7",
"validator": "^3.39.0",
"watchmen-ping-http-contains": "^0.0.2",
"watchmen-ping-http-head": "^0.2.0",
"watchmen-plugin-aws-ses": "0.0.1",
"watchmen-plugin-console": "0.2.0"
},
"devDependencies": {
"assert": "^1.3.0",
"bower": "1.4.x",
"del": "^2.0.2",
"faker": "^2.1.5",
"gulp": "^3.9.0",
"gulp-concat": "^2.5.2",
"gulp-copy": "0.0.2",
"gulp-filter": "^2.0.2",
"gulp-if": "^1.2.5",
"gulp-jshint": "^1.10.0",
"gulp-less": "^3.0.2",
"gulp-load-plugins": "^0.9.0",
"gulp-minify-css": "^1.0.0",
"gulp-ng-annotate": "^1.0.0",
"gulp-uglify": "^1.2.0",
"gulp-watch": "^4.2.4",
"istanbul": "0.3.x",
"main-bower-files": "^2.6.2",
"mocha": "^2.2.5",
"passport-mock": "0.0.3",
"run-sequence": "^1.1.4",
"sinon": "^1.14.1",
"supertest": "^1.0.1"
}
}