forked from senecajs/seneca-redis-queue-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
49
50
51
52
{
"name": "seneca-redis-queue-transport",
"version": "0.2.0",
"description": "Seneca Redis Queue Transport",
"main": "redis-queue-transport.js",
"license": "MIT",
"author": "Ianto Cristian",
"contributors": [
"Ianto Cristian",
"Richard Rodger (http://richardrodger.com)",
"Cristian Kiss (https://github.com/ckiss)"
],
"scripts": {
"test": "lab test/*.test.js -r console -v -L -m 3000 -t 96",
"lint": "lab -P test -dL",
"annotate": "docco redis-queue-transport.js -o doc"
},
"keywords": [
"seneca",
"transport",
"plugin",
"redis",
"queue"
],
"homepage": "https://github.com/senecajs/seneca-redis-queue-transport",
"repository": {
"type": "git",
"url": "git://github.com/iantocristian/seneca-redis-queue-transport.git"
},
"bugs": {
"url": "https://github.com/senecajs/seneca-redis-queue-transport/issues"
},
"dependencies": {
"lodash": "3.x.x",
"redis": "2.x.x"
},
"devDependencies": {
"async": "1.x.x",
"code": "1.x.x",
"docco": "0.7.0",
"eslint-config-seneca": "1.x.x",
"eslint-plugin-standard": "1.x.x",
"lab": "6.x.x",
"seneca": "plugin",
"seneca-transport-test": "0.1.2"
},
"files": [
"README.md",
"LICENSE.txt",
"redis-queue-transport.js"
]
}