UNPKG

@cheap-glitch/mi-cron

Version:

A microscopic parser for standard cron expressions.

76 lines 1.9 kB
{ "name": "@cheap-glitch/mi-cron", "version": "2.0.0", "description": "A microscopic parser for standard cron expressions.", "license": "ISC", "author": "cheap glitch <cheap.glitch@gmail.com> (https://github.com/cheap-glitch)", "repository": "cheap-glitch/mi-cron", "homepage": "https://github.com/cheap-glitch/mi-cron#readme", "bugs": "https://github.com/cheap-glitch/mi-cron/issues", "type": "module", "keywords": [ "cron", "crontab", "crontable", "date", "day", "hour", "hours", "lightweight", "micro", "minutes", "month", "parser", "schedule", "scheduling", "small", "tiny", "week", "weekday" ], "main": "dist/index.js", "exports": "./dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "directories": { "test": "test" }, "eslintConfig": { "root": true, "extends": "@cheap-glitch/typescript", "env": { "es6": true } }, "jest": { "preset": "ts-jest", "coverageDirectory": ".coverage" }, "devDependencies": { "@cheap-glitch/eslint-config-typescript": "^2.4.4", "@cheap-glitch/tsconfig": "^1.0.0", "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^8.30.1", "@typescript-eslint/parser": "^8.30.1", "empty-dir-cli": "^1.0.2", "eslint": "^9.24.0", "eslint-plugin-smarter-tabs": "^1.2.0", "jest": "^29.7.0", "terser": "^5.39.0", "ts-jest": "^29.3.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "scripts": { "build": "tsc", "build:clean": "empty-dir dist && npm run build", "build:watch": "tsc --watch", "coverage": "npm test -- --collectCoverage", "coverage:upload": "coveralls < .coverage/lcov.info", "lint": "eslint . --ext .ts --ignore-path .gitignore", "test": "jest --runInBand", "test:watch": "npm test -- --watch" } }