-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1022 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
33
34
35
{
"name": "redis-streams",
"version": "1.1.0",
"description": "Extends the node redis client with readStream, writeStream, and writeThrough functions.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/4front/redis-streams"
},
"keywords": [
"redis",
"streams",
"pipe",
"cache"
],
"author": "David Von Lehman (https://github.com/dvonlehman)",
"license": "MIT",
"dependencies": {
"redis": "^2.6.0-2",
"redis-rstream": "^0.1.2",
"redis-wstream": "^0.2.5",
"through2": "^2.0.1"
},
"devDependencies": {
"istanbul": "^0.4.3",
"lorem-ipsum": "^1.0.3",
"mocha": "^2.4.5",
"simple-bufferstream": "^1.0.0"
}
}