UNPKG

3.15 kBJSONView Raw
1{
2 "name": "cron",
3 "description": "Cron jobs for your node",
4 "version": "3.1.0",
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 "prepare": "husky install",
23 "release": "semantic-release"
24 },
25 "dependencies": {
26 "@types/luxon": "~3.3.0",
27 "luxon": "~3.3.0"
28 },
29 "devDependencies": {
30 "@commitlint/cli": "17.7.2",
31 "@insurgentlab/commitlint-config": "18.1.3",
32 "@insurgentlab/conventional-changelog-preset": "7.0.0",
33 "@semantic-release/changelog": "6.0.3",
34 "@semantic-release/commit-analyzer": "11.0.0",
35 "@semantic-release/git": "10.0.1",
36 "@semantic-release/github": "9.2.1",
37 "@semantic-release/npm": "11.0.0",
38 "@semantic-release/release-notes-generator": "12.0.0",
39 "@types/jest": "^29.5.5",
40 "@types/node": "^20.6.0",
41 "@types/sinon": "^10.0.16",
42 "@typescript-eslint/eslint-plugin": "^5.62.0",
43 "chai": "~4.2.x",
44 "eslint": "~8.36.x",
45 "eslint-config-prettier": "^8.7.x",
46 "eslint-plugin-jest": "^27.4.0",
47 "eslint-plugin-prettier": "~4.2.x",
48 "husky": "^8.0.3",
49 "jest": "~29.5.x",
50 "prettier": "~2.8.x",
51 "semantic-release": "22.0.5",
52 "sinon": "^15.0.x",
53 "ts-jest": "^29.1.1",
54 "typescript": "~5.1.6"
55 },
56 "keywords": [
57 "cron",
58 "node cron",
59 "node-cron",
60 "schedule",
61 "scheduler",
62 "cronjob",
63 "cron job"
64 ],
65 "license": "MIT",
66 "contributors": [
67 "Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
68 "Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
69 "Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
70 "James Padolsey <> (https://github.com/jamespadolsey)",
71 "Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
72 "Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
73 "Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
74 "humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
75 "Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
76 "Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
77 "Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
78 "Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
79 "Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
80 "Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
81 "Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
82 "Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
83 ],
84 "files": [
85 "dist/**/*.js",
86 "dist/**/*.d.ts",
87 "CHANGELOG.md",
88 "LICENSE",
89 "README.md"
90 ]
91}