Files
bree/package.json
T

167 lines
3.8 KiB
JSON

{
"name": "bree",
"description": "The best job scheduler for Node.js and JavaScript with cron, dates, ms, later, and human-friendly support. Works in Node v12.11.0+, uses worker threads to spawn sandboxed processes, and supports async/await, retries, throttling, concurrency, and cancelable promises (graceful shutdown). Simple, fast, and lightweight. Made for Forward Email and Lad.",
"version": "8.0.3",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/breejs/bree/issues",
"email": "niftylettuce@gmail.com"
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"shadowgate15 (https://github.com/shadowgate15)"
],
"dependencies": {
"@breejs/later": "^4.1.0",
"boolean": "^3.2.0",
"combine-errors": "^3.0.3",
"cron-validate": "^1.4.3",
"debug": "^4.3.4",
"human-interval": "^2.0.1",
"is-string-and-not-blank": "^0.0.2",
"is-valid-path": "^0.1.1",
"ms": "^2.1.3",
"p-wait-for": "3",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@goto-bus-stop/envify": "^5.0.0",
"@sinonjs/fake-timers": "^9.1.2",
"@types/node": "^17.0.40",
"@types/safe-timers": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"ava": "^4.3.0",
"cross-env": "^7.0.3",
"delay": "^5.0.0",
"dtslint": "^4.2.1",
"eslint": "^8.17.0",
"eslint-config-xo-lass": "^2.0.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-node": "^11.1.0",
"events.once": "^2.0.2",
"fixpack": "latest",
"husky": "^8.0.1",
"into-stream": "^7.0.0",
"lint-staged": "^13.0.0",
"nyc": "^15.1.0",
"remark-cli": "^10.0.1",
"remark-preset-github": "^4.0.4",
"unassertify": "^2.1.1",
"xo": "^0.49.0"
},
"engines": {
"node": ">= 12.11.0"
},
"files": [
"src",
"types/index.d.ts"
],
"homepage": "https://github.com/breejs/bree",
"keywords": [
"agenda",
"async",
"await",
"bee",
"bree",
"bull",
"callback",
"cancel",
"cancelable",
"child",
"clear",
"cron",
"cronjob",
"crontab",
"date",
"dates",
"day",
"dayjs",
"delay",
"english",
"express",
"expression",
"frequencies",
"frequency",
"frequent",
"friendly",
"graceful",
"human",
"humans",
"interval",
"job",
"jobs",
"js",
"koa",
"koatiming",
"lad",
"lass",
"later",
"moment",
"momentjs",
"mongo",
"mongodb",
"mongoose",
"p-cancel",
"p-cancelable",
"p-retry",
"parse",
"parser",
"pretty",
"process",
"processors",
"promise",
"promises",
"queue",
"queues",
"readable",
"recur",
"recurring",
"redis",
"redis",
"reload",
"restart",
"run",
"runner",
"schedule",
"scheduler",
"setup",
"spawn",
"tab",
"task",
"tasker",
"time",
"timeout",
"timer",
"timers",
"translated",
"universalify",
"worker",
"workers"
],
"license": "MIT",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/breejs/bree"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"dtslint": "cross-env NODE_ENV=test dtslint types",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "xo --ignore examples/",
"lint:md": "remark . -qfo",
"nyc": "cross-env NODE_ENV=test nyc ava",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run ava && npm run dtslint",
"test-coverage": "cross-env NODE_ENV=test nyc npm run test"
},
"types": "types"
}