-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 929 Bytes
/
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
{
"name": "substor",
"version": "1.0.1",
"description": "Utility to subscribe to one or more Redis channels at a time and store all messages received on subscribed channels. Messages can then be inspected",
"main": "substor.js",
"scripts": {
"test": "echo \"I need to create some tests for this eventually, but the node module is used in my own projects (hopefully that gives you some confidence)\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrbenhowl/substor.git"
},
"keywords": [
"redis",
"test",
"subscribe",
"channel",
"verification",
"store"
],
"author": "Ben Howl <mrbenhowl@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbenhowl/substor/issues"
},
"homepage": "https://github.com/mrbenhowl/substor#readme",
"dependencies": {
"q": "1.4.1",
"redis": "2.4.2",
"winston": "2.1.1"
}
}