UNPKG

nodejs-celery

Version:
61 lines (60 loc) 1.54 kB
{ "name": "nodejs-celery", "version": "1.0.12", "description": "Celery written in NodeJS", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "lint": "eslint --ext .js,.ts .", "format": "prettier --write \"{,!(node_modules)/**/}*.{js,ts}\"", "format-check": "prettier --check \"{,!(node_modules)/**/}*.{js,ts}\"", "dist": "tsc", "test": "mocha -r ts-node/register ./test/**/*", "prepublishOnly": "npm run dist" }, "repository": { "type": "git", "url": "git+https://github.com/giacaglia/celery.node.git" }, "keywords": [ "nodejs-celery", "node-celery", "celery", "celery-node", "task", "worker", "queue", "background", "rabbitmq", "redis" ], "author": "raulzito234@gmail.com", "license": "MIT", "bugs": { "url": "https://github.com/giacaglia/celery.node/issues" }, "homepage": "https://github.com/giacaglia/celery.node#readme", "devDependencies": { "@types/amqplib": "^0.5.17", "@types/chai": "^4.2.9", "@types/mocha": "^7.0.1", "@types/sinon": "^9.0.9", "@types/uuid": "^3.4.7", "chai": "^4.2.0", "eslint": "^7.16.0", "eslint-config-prettier": "^7.1.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-mocha": "^8.0.0", "express": "^4.17.1", "mocha": "^8.2.1", "prettier": "^1.19.1", "sinon": "^7.2.2", "ts-node": "^8.10.2", "typescript": "^5.5.3" }, "dependencies": { "amqplib": "^0.8.0", "ioredis": "^5.4.1", "uuid": "^3.3.2" } }