forked from technoweenie/coffee-resque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
17 lines (17 loc) · 894 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name" : "coffee-resque",
"version" : "0.1.9",
"description" : "Coffeescript/Node.js port of Resque",
"keywords" : ["resque", "redis", "queue", "coffee script"],
"homepage" : "https://github.com/technoweenie/coffee-resque",
"author" : "Rick Olson <technoweenie@gmail.com> (http://techno-weenie.net)",
"contributors" : ["Sean McDaniel <sean.mcdaniel@me.com>"],
"main" : "./lib/index",
"directories" : {"lib" : "./lib"},
"repository" : {"type" : "git", "url": "https://github.com/technoweenie/coffee-resque.git"},
"dependencies" : {"redis": ">= 0.5.2"},
"engines" : {"node" : ">= 0.2.6"},
"scripts" : {
"postinstall": "echo Update Notes: The worker polling mechanism was changed with this version to make coffee-resque workers behave similar to Ruby Resque workers. Please read about it in the README file."
}
}