UNPKG

node-resque

Version:

an opinionated implementation of resque in node

61 lines (60 loc) 1.42 kB
{ "author": "Evan Tahler <evantahler@gmail.com>", "name": "node-resque", "description": "an opinionated implementation of resque in node", "license": "Apache-2.0", "version": "8.0.4", "homepage": "http://github.com/actionhero/node-resque", "repository": { "type": "git", "url": "git://github.com/actionhero/node-resque.git" }, "main": "dist/index", "types": "dist/index", "keywords": [ "delayed", "queue", "resque", "redis", "work", "worker", "background", "job", "task" ], "engines": { "node": ">= 8" }, "dependencies": { "ioredis": "^4.19.2" }, "devDependencies": { "@types/ioredis": "^4.17.7", "@types/jest": "^26.0.15", "@types/node": "^14.14.6", "jest": "^26.6.3", "node-schedule": "^1.3.2", "prettier": "^2.1.2", "ts-jest": "^26.4.3", "ts-node": "^9.0.0", "typedoc": "^0.19.2", "typescript": "^4.0.5" }, "jest": { "testPathIgnorePatterns": [ "<rootDir>/__tests__/utils" ], "transform": { "^.+\\.ts?$": "ts-jest" } }, "scripts": { "prepare": "npm run build && npm run docs", "pretest": "npm run lint", "lint": "prettier --check src __tests__ examples \"*.md\"", "pretty": "prettier --write src __tests__ examples \"**/*.md\"", "test": "jest", "build": "tsc --declaration", "docs": "typedoc --out docs --theme default" } }