diff --git a/node_modules/cron-parser/dist/types/index.d.ts b/node_modules/cron-parser/dist/types/index.d.ts new file mode 100644 index 00000000..10b5a3aa --- /dev/null +++ b/node_modules/cron-parser/dist/types/index.d.ts @@ -0,0 +1,8 @@ +import { CronExpressionParser } from './CronExpressionParser'; +export { CronDate } from './CronDate'; +export { CronFieldCollection } from './CronFieldCollection'; +export { CronExpression, CronExpressionOptions } from './CronExpression'; +export { CronExpressionParser } from './CronExpressionParser'; +export { CronFileParser, CronFileParserResult } from './CronFileParser'; +export * from './fields'; +export default CronExpressionParser; diff --git a/node_modules/cron-parser/package.json b/node_modules/cron-parser/package.json new file mode 100644 index 00000000..cb168641 --- /dev/null +++ b/node_modules/cron-parser/package.json @@ -0,0 +1,117 @@ +{ + "name": "cron-parser", + "version": "5.4.0", + "description": "Node.js library for parsing crontab instructions", + "main": "dist/index.js", + "types": "dist/types/index.d.ts", + "type": "commonjs", + "scripts": { + "clean": "rimraf dist", + "bench": "cross-env node -r ts-node/register benchmarks/index.ts", + "bench:pattern": "cross-env node -r ts-node/register benchmarks/pattern.ts", + "bench:clean": "rimraf benchmarks/versions && rimraf benchmarks/results", + "build": "npm run clean && tsc -p tsconfig.json", + "prepublishOnly": "npm run build", + "prepare": "husky && npm run build", + "precommit": "lint-staged", + "lint": "eslint .", + "lint:fix": "eslint --fix .", + "lint:debug": "cross-env DEBUG=eslint:cli-engine eslint .", + "format": "prettier --write \"**/*.{ts,js,json,md}\"", + "format:check": "prettier --check \"**/*.{ts,js,json,md}\"", + "test:unit": "cross-env TZ=UTC jest", + "test:coverage": "cross-env TZ=UTC jest --coverage", + "generate-badges": "jest-coverage-badges", + "test:types": "npm run build && tsd", + "test": "cross-env TZ=UTC npm run lint && npm run test:types && npm run test:coverage && npm run generate-badges", + "docs": "rimraf docs && typedoc --out docs --readme none --name 'CronParser' src" + }, + "files": [ + "dist", + "LICENSE", + "README.md" + ], + "dependencies": { + "luxon": "^3.7.1" + }, + "devDependencies": { + "@tsd/typescript": "^5.8.2", + "@types/jest": "^29.5.14", + "@types/luxon": "^3.6.2", + "@types/node": "^22.14.0", + "@typescript-eslint/eslint-plugin": "^8.29.0", + "@typescript-eslint/parser": "^8.29.0", + "chalk": "^5.4.1", + "cli-table3": "^0.6.5", + "cross-env": "^7.0.3", + "eslint": "^9.23.0", + "eslint-config-prettier": "^10.1.1", + "eslint-plugin-prettier": "^5.2.6", + "husky": "^9.1.7", + "jest": "^29.7.0", + "jest-coverage-badges": "^1.0.0", + "lint-staged": "^15.5.0", + "prettier": "^3.5.3", + "rimraf": "^6.0.1", + "sinon": "^20.0.0", + "ts-jest": "^29.3.1", + "ts-node": "^10.9.2", + "tsd": "^0.31.2", + "typedoc": "^0.28.1", + "typescript": "^5.8.2" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + }, + "lint-staged": { + "*.{ts,js,json}": [ + "prettier --write" + ] + }, + "engines": { + "node": ">=18" + }, + "browser": { + "fs": false, + "fs/promises": false + }, + "tsd": { + "directory": "tests" + }, + "repository": { + "type": "git", + "url": "https://github.com/harrisiirak/cron-parser.git" + }, + "keywords": [ + "cron", + "crontab", + "parser" + ], + "author": "Harri Siirak", + "contributors": [ + "Nicholas Clawson", + "Daniel Prentis ", + "Renault John Lecoultre", + "Richard Astbury ", + "Meaglin Wasabi ", + "Mike Kusold ", + "Alex Kit ", + "Santiago Gimeno ", + "Daniel ", + "Christian Steininger ", + "Mykola Piskovyi ", + "Brian Vaughn ", + "Nicholas Clawson ", + "Yasuhiroki ", + "Nicholas Clawson ", + "Brendan Warkentin ", + "Charlie Fish ", + "Ian Graves ", + "Andy Thompson ", + "Regev Brody ", + "Michael Hobbs " + ], + "license": "MIT" +} diff --git a/node_modules/luxon/LICENSE.md b/node_modules/luxon/LICENSE.md new file mode 100644 index 00000000..2d560a64 --- /dev/null +++ b/node_modules/luxon/LICENSE.md @@ -0,0 +1,7 @@ +Copyright 2019 JS Foundation and other contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/node_modules/luxon/README.md b/node_modules/luxon/README.md new file mode 100644 index 00000000..3fcacd7d --- /dev/null +++ b/node_modules/luxon/README.md @@ -0,0 +1,55 @@ +# Luxon + +[![MIT License][license-image]][license] [![Build Status][github-action-image]][github-action-url] [![NPM version][npm-version-image]][npm-url] [![Coverage Status][test-coverage-image]][test-coverage-url] [![PRs welcome][contributing-image]][contributing-url] + +Luxon is a library for working with dates and times in JavaScript. + +```js +DateTime.now().setZone("America/New_York").minus({ weeks: 1 }).endOf("day").toISO(); +``` + +## Upgrading to 3.0 + +[Guide](https://moment.github.io/luxon/#upgrading) + +## Features + * DateTime, Duration, and Interval types. + * Immutable, chainable, unambiguous API. + * Parsing and formatting for common and custom formats. + * Native time zone and Intl support (no locale or tz files). + +## Download/install + +[Download/install instructions](https://moment.github.io/luxon/#/install) + +## Documentation + +* [General documentation](https://moment.github.io/luxon/#/?id=luxon) +* [API docs](https://moment.github.io/luxon/api-docs/index.html) +* [Quick tour](https://moment.github.io/luxon/#/tour) +* [For Moment users](https://moment.github.io/luxon/#/moment) +* [Why does Luxon exist?](https://moment.github.io/luxon/#/why) +* [A quick demo](https://moment.github.io/luxon/demo/global.html) + +## Development + +See [contributing](CONTRIBUTING.md). + +![Phasers to stun][phasers-image] + +[license-image]: https://img.shields.io/badge/license-MIT-blue.svg +[license]: LICENSE.md + +[github-action-image]: https://github.com/moment/luxon/actions/workflows/test.yml/badge.svg +[github-action-url]: https://github.com/moment/luxon/actions/workflows/test.yml + +[npm-url]: https://npmjs.org/package/luxon +[npm-version-image]: https://badge.fury.io/js/luxon.svg + +[test-coverage-url]: https://codecov.io/gh/moment/luxon +[test-coverage-image]: https://codecov.io/gh/moment/luxon/branch/master/graph/badge.svg + +[contributing-url]: https://github.com/moment/luxon/blob/master/CONTRIBUTING.md +[contributing-image]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg + +[phasers-image]: https://img.shields.io/badge/phasers-stun-brightgreen.svg diff --git a/node_modules/luxon/package.json b/node_modules/luxon/package.json new file mode 100644 index 00000000..f80269b1 --- /dev/null +++ b/node_modules/luxon/package.json @@ -0,0 +1,87 @@ +{ + "name": "luxon", + "version": "3.7.2", + "description": "Immutable date wrapper", + "author": "Isaac Cambron", + "keywords": [ + "date", + "immutable" + ], + "repository": "https://github.com/moment/luxon", + "exports": { + ".": { + "import": "./build/es6/luxon.mjs", + "require": "./build/node/luxon.js" + }, + "./package.json": "./package.json" + }, + "scripts": { + "build": "babel-node tasks/buildAll.js", + "build-node": "babel-node tasks/buildNode.js", + "build-global": "babel-node tasks/buildGlobal.js", + "jest": "jest", + "test": "jest --coverage", + "api-docs": "mkdir -p build && documentation build src/luxon.js -f html -o build/api-docs && sed -i.bak 's/<\\/body>/