UNPKG

3 kBJSONView Raw
1{
2 "name": "cron",
3 "description": "Cron jobs for your node",
4 "version": "2.4.1",
5 "author": "Nick Campbell <nicholas.j.campbell@gmail.com> (https://github.com/ncb000gt)",
6 "bugs": {
7 "url": "https://github.com/kelektiv/node-cron/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/kelektiv/node-cron.git"
12 },
13 "main": "lib/cron",
14 "scripts": {
15 "lint": "eslint {lib,tests}/*.js",
16 "test": "jest --coverage",
17 "test:watch": "jest --watch --coverage",
18 "prepare": "husky install",
19 "release": "semantic-release"
20 },
21 "types": "types/index.d.ts",
22 "dependencies": {
23 "luxon": "^3.2.1"
24 },
25 "devDependencies": {
26 "@commitlint/cli": "~17.6.6",
27 "@insurgentlab/commitlint-config": "^18.1.0",
28 "@insurgentlab/conventional-changelog-preset": "~6.0.3",
29 "@semantic-release/changelog": "~6.0.x",
30 "@semantic-release/commit-analyzer": "~9.0.x",
31 "@semantic-release/git": "~10.0.x",
32 "@semantic-release/github": "~8.1.x",
33 "@semantic-release/npm": "~10.0.x",
34 "@semantic-release/release-notes-generator": "~11.0.x",
35 "chai": "~4.2.x",
36 "eslint": "~8.36.x",
37 "eslint-config-prettier": "^8.7.x",
38 "eslint-config-standard": "~17.0.x",
39 "eslint-plugin-import": "~2.27.x",
40 "eslint-plugin-jest": "~27.2.x",
41 "eslint-plugin-n": "~15.6.x",
42 "eslint-plugin-prettier": "~4.2.x",
43 "eslint-plugin-promise": "~6.1.x",
44 "husky": "^8.0.3",
45 "jest": "~29.5.x",
46 "prettier": "~2.8.x",
47 "semantic-release": "~21.0.x",
48 "sinon": "^15.0.x"
49 },
50 "keywords": [
51 "cron",
52 "node cron",
53 "node-cron",
54 "schedule",
55 "scheduler",
56 "cronjob",
57 "cron job"
58 ],
59 "license": "MIT",
60 "contributors": [
61 "Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
62 "Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
63 "James Padolsey <> (https://github.com/jamespadolsey)",
64 "Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
65 "Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
66 "Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
67 "humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
68 "Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
69 "Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
70 "Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
71 "Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
72 "Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
73 "Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
74 "Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
75 "Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
76 ],
77 "jest": {
78 "collectCoverage": true,
79 "collectCoverageFrom": [
80 "lib/*.js"
81 ],
82 "coverageThreshold": {
83 "global": {
84 "statements": 80,
85 "branches": 80,
86 "functions": 70,
87 "lines": 80
88 }
89 }
90 },
91 "files": [
92 "lib",
93 "types",
94 "CHANGELOG.md",
95 "LICENSE",
96 "README.md"
97 ]
98}