forked from foreversd/forever
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 821 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 821 Bytes
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
{
"name": "forever",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.3.1",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{ "name": "Fedor Indutny", "email": "fedor.indutny@gmail.com" },
{ "name": "James Halliday", "email": "mail@substack.net" }
],
"repository": {
"type": "git",
"url": "http://github.com/indexzero/forever.git"
},
"keywords": ["cli", "fault tolerant", "sysadmin", "tools"],
"dependencies": {
"colors": ">= 0.3.0",
"daemon": ">= 0.1.0",
"optimist": ">= 0.0.6",
"vows": ">= 0.5.2"
},
"bin": { "forever": "./bin/forever" },
"main": "./lib/forever",
"scripts": { "test": "vows test/*-test.js --spec" },
"engines": { "node": ">= 0.2.0" }
}