-
Notifications
You must be signed in to change notification settings - Fork 944
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[minor dist api] Small updates for storing a forever global config fi…
…le. Update package.json using require-analyzer
- Loading branch information
Showing
3 changed files
with
82 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,25 +4,43 @@ | |
"version": "0.4.2", | ||
"author": "Charlie Robbins <[email protected]>", | ||
"contributors": [ | ||
{ "name": "Fedor Indutny", "email": "[email protected]" }, | ||
{ "name": "James Halliday", "email": "[email protected]" } | ||
{ | ||
"name": "Fedor Indutny", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "James Halliday", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "http://github.com/indexzero/forever.git" | ||
"url": "http://github.com/indexzero/forever.git" | ||
}, | ||
"keywords": ["cli", "fault tolerant", "sysadmin", "tools"], | ||
"keywords": [ | ||
"cli", | ||
"fault tolerant", | ||
"sysadmin", | ||
"tools" | ||
], | ||
"dependencies": { | ||
"async": ">= 0.1.8", | ||
"colors": ">= 0.3.0", | ||
"colors": ">= 0.5.0", | ||
"daemon": ">= 0.3.0", | ||
"optimist": ">= 0.0.6", | ||
"timespan": ">= 2.0.0", | ||
"vows": ">= 0.5.2", | ||
"winston": ">= 0.2.1" | ||
"winston": ">= 0.2.7", | ||
"nconf": ">= 0.1.7" | ||
}, | ||
"bin": { | ||
"forever": "./bin/forever" | ||
}, | ||
"bin": { "forever": "./bin/forever" }, | ||
"main": "./lib/forever", | ||
"scripts": { "test": "vows test/*-test.js --spec" }, | ||
"engines": { "node": ">= 0.4.0" } | ||
} | ||
"scripts": { | ||
"test": "vows test/*-test.js --spec" | ||
}, | ||
"engines": { | ||
"node": ">= 0.4.0" | ||
} | ||
} |