UNPKG

3.26 kBJSONView Raw
1{
2 "name": "cron",
3 "description": "Cron jobs for your node",
4 "version": "3.1.6",
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": "dist/index",
14 "scripts": {
15 "build": "tsc -b tsconfig.build.json",
16 "lint:eslint": "eslint src/ tests/ --ext .ts",
17 "lint:prettier": "prettier ./**/*.{json,md,yml} --check",
18 "lint": "npm run lint:eslint && npm run lint:prettier",
19 "lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
20 "test": "jest --coverage",
21 "test:watch": "jest --watch --coverage",
22 "test:fuzz": "jest --testMatch='**/*.fuzz.ts' --coverage=false --testTimeout=120000",
23 "prepare": "husky install",
24 "release": "semantic-release"
25 },
26 "dependencies": {
27 "@types/luxon": "~3.3.0",
28 "luxon": "~3.4.0"
29 },
30 "devDependencies": {
31 "@commitlint/cli": "18.2.0",
32 "@fast-check/jest": "1.7.3",
33 "@insurgentlab/commitlint-config": "18.1.3",
34 "@insurgentlab/conventional-changelog-preset": "7.0.0",
35 "@semantic-release/changelog": "6.0.3",
36 "@semantic-release/commit-analyzer": "11.0.0",
37 "@semantic-release/git": "10.0.1",
38 "@semantic-release/github": "9.2.1",
39 "@semantic-release/npm": "11.0.0",
40 "@semantic-release/release-notes-generator": "12.0.0",
41 "@types/jest": "29.5.6",
42 "@types/node": "20.8.9",
43 "@types/sinon": "10.0.20",
44 "@typescript-eslint/eslint-plugin": "6.9.0",
45 "chai": "4.3.10",
46 "eslint": "8.52.0",
47 "eslint-config-prettier": "9.0.0",
48 "eslint-plugin-jest": "27.4.3",
49 "eslint-plugin-prettier": "5.0.1",
50 "husky": "8.0.3",
51 "jest": "29.7.0",
52 "prettier": "3.0.3",
53 "semantic-release": "22.0.5",
54 "sinon": "17.0.0",
55 "ts-jest": "29.1.1",
56 "typescript": "5.2.2"
57 },
58 "keywords": [
59 "cron",
60 "node cron",
61 "node-cron",
62 "schedule",
63 "scheduler",
64 "cronjob",
65 "cron job"
66 ],
67 "license": "MIT",
68 "contributors": [
69 "Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
70 "Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
71 "Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
72 "James Padolsey <> (https://github.com/jamespadolsey)",
73 "Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
74 "Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
75 "Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
76 "humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
77 "Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
78 "Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
79 "Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
80 "Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
81 "Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
82 "Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
83 "Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
84 "Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
85 ],
86 "files": [
87 "dist/**/*.js",
88 "dist/**/*.d.ts",
89 "CHANGELOG.md",
90 "LICENSE",
91 "README.md"
92 ]
93}