forked from andyet/thoonk.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
43
44
45
46
47
48
{
"name": "thoonk",
"version": "0.6.0",
"description": "Thoonk is a persistent (and fast!) system for push feeds, queues, and jobs which leverages Redis. Thoonk follows a contract (schema + behavior) to allow multiple languages and custom implementations to interact reliably.",
"keywords": [
"redis",
"job",
"feed",
"queue",
"publish",
"subscribe",
"push",
"live",
"cluster"
],
"homepage": "thoonk.com",
"author": {
"name": "Nathan Fritz",
"email": "[email protected]",
"url": "http://andyet.net/team/nathan"
},
"contributors": [],
"files": [
"feed.js",
"job.js",
"queue.js",
"sorted_feed.js",
"testall.js",
"thoonk.js",
"tests",
"examples",
"LICENSE",
"README.md",
"contract.txt",
"testconfig.json",
"scripts"
],
"main": "./thoonk.js",
"repository": {
"type": "git",
"url": "http://github.com/fritzy/thoonk.js.git"
},
"dependencies": {
"node-uuid": ">=1.1.0",
"hiredis": ">=0.1.14",
"redis": "~0.7.2"
}
}