-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 858 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 858 Bytes
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
{
"name": "node-redis-pubsub",
"version": "5.0.0",
"author": {
"name": "Louis Chatriot",
"email": "louis.chatriot@gmail.com"
},
"contributors": [
"Louis Chatriot",
"omarmohamed",
"Martin Saint-Macary",
"Narciso Guillen"
],
"description": "Redis PubSub client for Node",
"keywords": [
"redis",
"pubsub",
"node",
"simple"
],
"homepage": "https://github.com/louischatriot/node-redis-pubsub",
"dependencies": {
"redis": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "*",
"should": "*",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/louischatriot/node-redis-pubsub"
},
"engines": {
"node": "*"
},
"main": "index",
"scripts": {
"test": "make test"
},
"licence": "mit"
}