mirror of
https://github.com/Mintplex-Labs/bree.git
synced 2026-07-01 20:04:39 -04:00
172 lines
3.5 KiB
JSON
172 lines
3.5 KiB
JSON
{
|
|
"name": "bree",
|
|
"description": "The best job scheduler for Node.js with support for cron, dates, ms, later, and human-friendly strings. Uses workers to spawn sandboxed processes, and supports async/await, retries, throttling, concurrency, and cancelable promises (graceful shutdown). Simple, fast, and the most lightweight tool for the job. Made for Forward Email and Lad.",
|
|
"version": "1.0.0",
|
|
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)",
|
|
"ava": {
|
|
"files": [
|
|
"test/*.js",
|
|
"test/**/*.js",
|
|
"!test/jobs"
|
|
],
|
|
"verbose": true
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/breejs/bree/issues",
|
|
"email": "niftylettuce@gmail.com"
|
|
},
|
|
"contributors": [
|
|
"Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
|
|
],
|
|
"dependencies": {
|
|
"boolean": "^3.0.1",
|
|
"combine-errors": "^3.0.3",
|
|
"cron-validate": "^1.1.4",
|
|
"debug": "^4.1.1",
|
|
"human-interval": "^1.0.0",
|
|
"is-string-and-not-blank": "^0.0.2",
|
|
"later": "^1.2.0",
|
|
"ms": "^2.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "latest",
|
|
"@commitlint/config-conventional": "latest",
|
|
"ava": "latest",
|
|
"codecov": "latest",
|
|
"cross-env": "latest",
|
|
"eslint": "^7.4.0",
|
|
"eslint-config-xo-lass": "latest",
|
|
"fixpack": "latest",
|
|
"husky": "latest",
|
|
"lint-staged": "latest",
|
|
"nyc": "latest",
|
|
"remark-cli": "latest",
|
|
"remark-preset-github": "latest",
|
|
"xo": "^0.32.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12.11.0"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"homepage": "https://github.com/breejs/bree",
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && npm test",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"agenda",
|
|
"async",
|
|
"await",
|
|
"bee",
|
|
"bee",
|
|
"bree",
|
|
"bull",
|
|
"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": "index.js",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/breejs/bree"
|
|
},
|
|
"scripts": {
|
|
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"lint": "yarn run lint:js && yarn run lint:md",
|
|
"lint:js": "xo",
|
|
"lint:md": "remark . -qfo",
|
|
"pretest": "yarn run lint",
|
|
"test": "cross-env NODE_ENV=test ava",
|
|
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"space": true,
|
|
"extends": [
|
|
"xo-lass"
|
|
],
|
|
"ignore": [
|
|
"config.js"
|
|
]
|
|
}
|
|
}
|