-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "recurrent",
"version": "0.1.3",
"keywords": ["job", "manager", "recurrent", "persistent", "redis"],
"homepage": "https://github.com/pconstr/recurrent",
"description": "redis-backed recurrent job manager",
"main": "recurrent.js",
"repository": {
"type": "git",
"url": "https://github.com/pconstr/recurrent"
},
"engines": {
"node": ">=0.4.0 <0.9.0"
},
"author": "Carlos Guerreiro <[email protected] (http://perceptiveconstructs.com)",
"dependencies": {
"hiredis":"0.1.14",
"redis":"0.7.2",
"countdown": "2.2.0"
},
"devDependencies" : {
"carrier": "0.1.7",
"underscore": "1.3.3"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"bugs" : { "url" : "https://github.com/pconstr/recurrent/issues" },
"contributors": [
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://perceptiveconstructs.com"
}
],
"scripts": {
"test": "cd ./tests && ./oneTaskThreeTimes.js && ./threeTasks.js && ./taskFailure.js"
}
}