forked from senecajs/seneca-redis-queue-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "seneca-redis-queue-transport",
"version": "0.3.1",
"description": "Seneca Redis Queue Transport",
"main": "redis-queue-transport.js",
"license": "MIT",
"author": "Ianto Cristian",
"contributors": [
"Ianto Cristian (https://github.com/iantocristian)",
"Richard Rodger (http://richardrodger.com)",
"Cristian Kiss (https://github.com/ckiss)",
"Wyatt Preul (https://github.com/geek)",
"Josh Reeter (https://github.com/jreeter)",
"Shane Lacey (https://github.com/shanel262)",
"David Gonzalez (https://github.com/dgonzalez)"
],
"scripts": {
"test": "lab test/*.test.js -r console -v -L -m 3000 -t 89 -c",
"lint": "lab -P test -dL",
"annotate": "docco redis-queue-transport.js -o docs/annotated",
"build": "docker-compose build",
"start": "docker-compose up",
"stop": "docker-compose kill",
"coveralls": "lab -s -P test -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 89 -r html > docs/coverage.html"
},
"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": "4.x.x",
"redis": "2.x.x"
},
"devDependencies": {
"async": "2.x.x",
"code": "3.x.x",
"coveralls": "2.11.x",
"docco": "0.7.0",
"eslint-config-seneca": "3.x.x",
"eslint-plugin-standard": "2.x.x",
"lab": "11.x.x",
"pre-commit": "1.1.x",
"seneca": "plugin",
"seneca-transport-test": "0.2.0"
},
"files": [
"README.md",
"LICENSE.txt",
"redis-queue-transport.js"
],
"pre-commit": [
"test"
]
}