UNPKG

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