torotask
Version:
Task queue processing in NodeJS based on BullMQ and Redis
70 lines • 1.65 kB
JSON
{
"name": "torotask",
"version": "0.8.4",
"keywords": [
"bullmq",
"message-queue",
"task-queue",
"tasks"
],
"description": "Task queue processing in NodeJS based on BullMQ and Redis",
"author": "Ben Osman",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/torotask/torotask.git"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.1",
"@types/pino": "^7.0.5",
"bullmq": "^5.56.0",
"camelcase": "^8.0.0",
"cronstrue": "^2.59.0",
"glob": "^11.0.3",
"ioredis": "^5.4.1",
"lodash-es": "^4.17.21",
"ms": "^2.1.3",
"pino": "^9.6.0",
"pretty-ms": "^9.2.0",
"tiny-lru": "^11.2.11",
"ts-node": "^10.9.2",
"uuid": "^11.1.0",
"zod": "^3.25.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/ms": "^2.1.0",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"redis-memory-server": "^0.10.0",
"ts-jest": "^29.1.2"
},
"scripts": {
"build": "tsc --build",
"build:dev": "tsc --build",
"clean": "tsc --build --clean",
"dev": "tsc --build --watch",
"test": "jest",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:watch": "jest --watch"
}
}