forked from iloire/watchmen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 866 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
{
"author": "Iván Loire <[email protected]> (http://iloire.com/)",
"name": "watchmen",
"scripts": {
"test": "redis-server test/redis.conf;mocha -R list -b test/*.mocha;kill `cat test/redis.pid`",
"start": "redis-server redis.conf; forever start server.js; forever start webserver/app.js 8084",
"stop": "forever stop server.js"
},
"description": "A Node.js HTTP monitor",
"version": "1.0.0",
"homepage": "http://letsnode.com",
"repository": {
"type": "git",
"url": "git://github.com/iloire/WatchMen.git"
},
"engines": {
"node": "0.6.x"
},
"keywords": [
"watchmen",
"service",
"monitor",
"ping"
],
"license": "MIT",
"dependencies": {
"ejs": "0.7.x",
"express": "2.5.x",
"redis": "0.7.x",
"moment": "1.7.x"
},
"devDependencies": {
"assert": "0.4.x",
"mocha": "1.3.x"
}
}