UNPKG

durabull

Version:

A durable workflow engine built on top of BullMQ and Redis

60 lines (59 loc) 1.57 kB
{ "name": "durabull", "version": "0.2.7", "description": "A durable workflow engine built on top of BullMQ and Redis", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.js" }, "./worker": { "types": "./dist/worker/index.d.ts", "require": "./dist/worker/index.js", "import": "./dist/worker/index.js" } }, "scripts": { "build": "tsc", "test": "jest", "test:unit": "jest --testPathIgnorePatterns=tests/integration", "test:integration": "jest --config=jest.integration.config.js", "test:watch": "jest --watch", "lint": "eslint \"src/**/*.{ts,tsx}\" \"tests/**/*.{ts,tsx}\" \"examples/**/*.{ts,tsx}\"", "lint:fix": "npm run lint -- --fix", "prepublishOnly": "npm run build", "example:greeting": "ts-node examples/greeting/run.ts" }, "keywords": [ "workflow", "bullmq", "redis", "durable", "temporal", "orchestration" ], "author": "", "license": "MIT", "dependencies": { "bullmq": "^5.0.0", "ioredis": "^5.3.2", "ulid": "^3.0.1", "uuid": "^9.0.1" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.10.6", "@types/uuid": "^9.0.7", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", "dotenv": "^16.4.5", "eslint": "^8.56.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "5.3.3" } }