{ "name": "cron", "description": "Cron jobs for your node", "version": "2.4.4", "author": "Nick Campbell (https://github.com/ncb000gt)", "bugs": { "url": "https://github.com/kelektiv/node-cron/issues" }, "repository": { "type": "git", "url": "https://github.com/kelektiv/node-cron.git" }, "main": "lib/cron", "scripts": { "lint": "eslint {lib,tests}/*.js", "test": "jest --coverage", "test:watch": "jest --watch --coverage", "test:types": "tsd", "prepare": "husky install", "release": "semantic-release" }, "types": "types/index.d.ts", "dependencies": { "@types/luxon": "~3.3.0", "luxon": "~3.3.0" }, "devDependencies": { "@commitlint/cli": "~17.6.6", "@insurgentlab/commitlint-config": "^18.1.0", "@insurgentlab/conventional-changelog-preset": "~6.0.3", "@semantic-release/changelog": "~6.0.x", "@semantic-release/commit-analyzer": "~9.0.x", "@semantic-release/git": "~10.0.x", "@semantic-release/github": "~8.1.x", "@semantic-release/npm": "~10.0.x", "@semantic-release/release-notes-generator": "~11.0.x", "chai": "~4.2.x", "eslint": "~8.36.x", "eslint-config-prettier": "^8.7.x", "eslint-config-standard": "~17.0.x", "eslint-plugin-import": "~2.27.x", "eslint-plugin-jest": "~27.2.x", "eslint-plugin-n": "~15.6.x", "eslint-plugin-prettier": "~4.2.x", "eslint-plugin-promise": "~6.1.x", "husky": "^8.0.3", "jest": "~29.5.x", "prettier": "~2.8.x", "semantic-release": "~21.0.x", "sinon": "^15.0.x", "tsd": "^0.28.1" }, "keywords": [ "cron", "node cron", "node-cron", "schedule", "scheduler", "cronjob", "cron job" ], "license": "MIT", "contributors": [ "Brandon der Blätter (https://github.com/intcreator)", "Romain Beauxis (https://github.com/toots)", "James Padolsey <> (https://github.com/jamespadolsey)", "Finn Herpich (https://github.com/ErrorProne)", "Clifton Cunningham (https://github.com/cliftonc)", "Eric Abouaf (https://github.com/neyric)", "humanchimp (https://github.com/humanchimp)", "Craig Condon (https://github.com/spiceapps)", "Dan Bear (https://github.com/danhbear)", "Vadim Baryshev (https://github.com/baryshev)", "Leandro Ferrari (https://github.com/lfthomaz)", "Gregg Zigler (https://github.com/greggzigler)", "Jordan Abderrachid (https://github.com/jordanabderrachid)", "Masakazu Matsushita (matsukaz)", "Christopher Lunt (https://github.com/kirisu)" ], "jest": { "collectCoverage": true, "collectCoverageFrom": [ "lib/*.js" ], "coverageThreshold": { "global": { "statements": 80, "branches": 80, "functions": 70, "lines": 80 } } }, "files": [ "lib", "types", "CHANGELOG.md", "LICENSE", "README.md" ] }