rsmq-ms
Version:
A forked of the really simple message queue based on Redis with millisecond delay support.
51 lines • 1.19 kB
JSON
{
"name": "rsmq-ms",
"description": "A forked of the really simple message queue based on Redis with millisecond delay support.",
"version": "0.17.0",
"license": "MIT",
"author": "P. Liess <smrchy+npm@gmail.com>",
"engines": {
"node": "> 6.0.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"build:test": "coffee -c -m test/test.coffee",
"watch:test": "coffee -c -m -w test/test.coffee",
"test": "mocha -r source-map-support/register ./test/test.js"
},
"dependencies": {
"@types/redis": "^2.8.28",
"lodash": "^4.17.20",
"redis": "^3.0.2"
},
"devDependencies": {
"async": "^3.2.0",
"coffeescript": "^2.5.1",
"mocha": "^7.0.1",
"should": "^13.2.3",
"source-map-support": "^0.5.21",
"ts-loader": "^6.2.1",
"typescript": "4.1.3"
},
"keywords": [
"queue",
"messagequeue",
"jobs",
"message-queue",
"redis"
],
"repository": {
"type": "git",
"url": "http://github.com/hookdeck/rsmq.git"
},
"bugs": {
"url": "https://github.com/hookdeck/rsmq/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
]
}