peanar
Version:
A job queue for Node.js based on RabbitMQ
59 lines (58 loc) • 1.37 kB
JSON
{
"name": "peanar",
"version": "0.18.1",
"description": "A job queue for Node.js based on RabbitMQ",
"main": "dist/index.js",
"scripts": {
"test": "npx mocha",
"build": "npx tsc && cp src/amqplib_compat/pool.* dist/amqplib_compat",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martianboy/peanar.git"
},
"files": [
"dist"
],
"keywords": [
"rabbitmq",
"job-queue",
"background-jobs",
"worker-queue"
],
"author": "Abbas Mashayekh",
"license": "MIT",
"bugs": {
"url": "https://github.com/martianboy/peanar/issues"
},
"engines": {
"node": ">= 16.x"
},
"homepage": "https://github.com/martianboy/peanar#readme",
"devDependencies": {
"@types/amqplib": "^0.10.7",
"@types/chai": "^4.3.20",
"@types/colors": "^1.2.1",
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.126",
"@types/sinon": "^17.0.4",
"@types/uuid": "^9.0.2",
"@types/wtfnode": "^0.7.3",
"chai": "^4.5.0",
"eslint": "^9.25.1",
"mocha": "^11.1.0",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"wtfnode": "^0.10.0"
},
"dependencies": {
"amqplib": "^0.10.7",
"colors": "^1.4.0",
"debug": "^4.4.0",
"ts-amqp": "^0.8.1",
"uuid": "^9.0.0"
}
}