Files
bree/package.json
T
2024-07-03 10:48:21 -07:00

161 lines
3.7 KiB
JSON

{
"name": "@mintplex-labs/bree",
"description": "A fork of BreeJS/bree. A Node.js and JavaScript task scheduler with cron, dates, ms, later, and human-friendly support. Works in Node v12.17.0+, uses worker threads or process forks, and supports async/await, retries, throttling, concurrency, and cancelable promises (graceful shutdown). Simple, fast, and lightweight. Customized for AnythingLLM.",
"version": "9.2.5",
"author": "Mintplex Labs Inc <team@mintplexlabs.com>",
"bugs": {
"url": "https://github.com/Mintplex-Labs/bree/issues",
"email": "team@mintplexlabs.com"
},
"contributors": [
"Mintplex Labs Inc <tim@mintplexlabs.com> (https://mintplexlabs.com)",
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
"shadowgate15 (https://github.com/shadowgate15)"
],
"dependencies": {
"@breejs/later": "^4.2.0",
"boolean": "^3.2.0",
"combine-errors": "^3.0.3",
"cron-validate": "^1.4.5",
"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": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@goto-bus-stop/envify": "^5.0.0",
"@sinonjs/fake-timers": "^11.2.2",
"@types/node": "^20.12.7",
"@types/safe-timers": "^1.1.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"ava": "^5.3.1",
"cross-env": "^7.0.3",
"delay": "5",
"eslint": "8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"events.once": "^2.0.2",
"fixpack": "^4.0.0",
"husky": "8.0.3",
"into-stream": "7",
"lint-staged": "^15.2.2",
"nyc": "^15.1.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"tsd": "^0.31.0",
"xo": "0.54"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"src"
],
"homepage": "https://github.com/Mintplex-Labs/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/Mintplex-Labs/bree"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"lint": "npm run lint:js && npm run lint:md && fixpack",
"lint:js": "xo --fix --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 && tsd",
"test-coverage": "cross-env NODE_ENV=test nyc npm run test"
},
"types": "src/index.d.ts"
}