UNPKG

torotask

Version:

Task queue processing in NodeJS based on BullMQ and Redis

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