UNPKG

3.22 kBJSONView Raw
1{
2 "name": "cron",
3 "description": "Cron jobs for your node",
4 "version": "3.1.7",
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 },
25 "dependencies": {
26 "@types/luxon": "~3.4.0",
27 "luxon": "~3.4.0"
28 },
29 "devDependencies": {
30 "@commitlint/cli": "18.6.1",
31 "@fast-check/jest": "1.8.1",
32 "@insurgent/commitlint-config": "19.0.0",
33 "@insurgent/conventional-changelog-preset": "9.0.1",
34 "@semantic-release/changelog": "6.0.3",
35 "@semantic-release/commit-analyzer": "11.1.0",
36 "@semantic-release/git": "10.0.1",
37 "@semantic-release/github": "9.2.6",
38 "@semantic-release/npm": "11.0.3",
39 "@semantic-release/release-notes-generator": "12.1.0",
40 "@types/jest": "29.5.12",
41 "@types/node": "20.12.4",
42 "@types/sinon": "17.0.3",
43 "@typescript-eslint/eslint-plugin": "6.21.0",
44 "chai": "4.4.1",
45 "eslint": "8.57.0",
46 "eslint-config-prettier": "9.1.0",
47 "eslint-plugin-jest": "27.9.0",
48 "eslint-plugin-prettier": "5.1.3",
49 "husky": "8.0.3",
50 "jest": "29.7.0",
51 "prettier": "3.2.5",
52 "semantic-release": "22.0.12",
53 "sinon": "17.0.1",
54 "ts-jest": "29.1.2",
55 "typescript": "5.4.4"
56 },
57 "keywords": [
58 "cron",
59 "node cron",
60 "node-cron",
61 "schedule",
62 "scheduler",
63 "cronjob",
64 "cron job"
65 ],
66 "license": "MIT",
67 "contributors": [
68 "Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
69 "Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
70 "Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
71 "James Padolsey <> (https://github.com/jamespadolsey)",
72 "Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
73 "Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
74 "Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
75 "humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
76 "Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
77 "Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
78 "Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
79 "Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
80 "Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
81 "Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
82 "Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
83 "Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
84 ],
85 "files": [
86 "dist/**/*.js",
87 "dist/**/*.d.ts",
88 "CHANGELOG.md",
89 "LICENSE",
90 "README.md"
91 ]
92}