forked from senecajs/seneca-redis-pubsub-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 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
{
"name": "seneca-redis-transport",
"version": "0.3.1",
"description": "Seneca Redis transport",
"main": "lib/index.js",
"scripts": {
"test": "lab test/*.test.js -r console -c -v -L -t 92",
"coveralls": "lab -s test/*.test.js -r lcov | coveralls",
"coverage": "lab -v -P test -L -t 92 -r html > docs/coverage.html",
"lint": "lab -dL",
"annotate": "docco lib/index.js -o docs/annotated"
},
"repository": {
"type": "git",
"url": "git://github.com/senecajs/seneca-redis-pubsub-transport.git"
},
"keywords": [
"seneca",
"transport",
"plugin",
"redis",
"pubsub",
"pub-sub",
"publish",
"subscribe"
],
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)",
"Mohamed Habashy (https://github.com/Mohamed-Habshey)",
"Adrien Becchis (https://github.com/AdrieanKhisbe)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Emer Rutherford (https://github.com/eeswr)",
"Oisín Hennessy (https://github.com/code-jace)",
"Luca Lanziani (https://github.com/LucaLanziani)",
"Maxence Dalmais (https://github.com/maxired)",
"Pierre-Jean Leger (https://github.com/Caligone)",
"Shane Lacey (https://github.com/shanel262)",
"David Gonzalez (https://github.com/dgonzalez)"
],
"license": "MIT",
"dependencies": {
"lodash": "4.14.x",
"redis": "2.6.x"
},
"devDependencies": {
"coveralls": "2.x.x",
"docco": "0.7.x",
"eslint-config-seneca": "3.x.x",
"eslint-plugin-hapi": "4.x.x",
"eslint-plugin-standard": "2.x.x",
"lab": "11.0.x",
"seneca": "plugin",
"seneca-transport-test": "~0.1.3"
},
"files": [
"README.md",
"LICENSE",
"lib"
],
"pre-commit": [
"test"
]
}