node-redis-queue
Version:
A simple, lightweight queue using Redis lpush and brpop
47 lines (45 loc) • 1.5 kB
JSON
{
"name": "node-redis-queue",
"version": "0.2.5",
"description": "A simple, lightweight queue using Redis lpush and brpop",
"keywords": ["queueing", "queue", "scalable", "redis", "job", "job-queue", "work", "work-queue",
"message", "message-queue", "send", "consume"],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/cwjohan/node-redis-queue"
},
"bugs": {
"url": "https://github.com/cwjohan/node-redis-queue/issues",
"email": "cwjohan[at]gmail[dot]com"
},
"author": {
"name": "Craig Johannsen",
"email": "cwjohan[at]gmail[dot]com"
},
"license": "MIT",
"dependencies": {
"redis": "~0.12.1"
},
"devDependencies": {
"chai": "^1.9.2",
"coffee-script": "^1.8.0",
"coffeelint": "^1.6.0",
"grunt": "~0.4.1",
"grunt-bumpx": "~0.1.0",
"grunt-coffeelint": "0.0.13",
"grunt-contrib-coffee": "~0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-test": "^0.12.2",
"memwatch": "~0.2.2",
"mocha": "^1.21.5",
"request": "^2.47.0"
},
"scripts": {
"test": "node_modules/.bin/mocha -R spec --compilers coffee:coffee-script/register test",
"clean": "bash script/clean",
"compile-test": "node_modules/.bin/coffee -c -o test test"
},
"engines": { "node": ">=0.10.29" },
"os": ["win32", "win64", "linux"]
}