UNPKG

natural-cron

Version:

Natural Cron is a easy-to-use Node.js library for creating and validating cron expressions with natural, human-readable APIs.

56 lines (55 loc) 1.27 kB
{ "name": "natural-cron", "version": "1.0.3", "description": "", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "files": [ "dist" ], "scripts": { "test": "./node_modules/.bin/jest", "build": "npm run clean:dist && npm run build:esm && npm run build:cjs && npm run build:web", "clean:dist": "rm -rf dist/", "build:esm": "tsc", "build:cjs": "tsc --module CommonJS --outDir dist/cjs", "build:web": "npx webpack --mode=production" }, "author": "Satyajit Nayak", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/satyajitnayk/natural-cron" }, "devDependencies": { "@types/node": "^20.8.10", "ts-node": "^10.9.1", "ts-node-dev": "^2.0.0", "typescript": "^5.2.2", "@types/jest": "^28.1.6", "jest": "^28.1.3", "prettier": "^2.7.1", "ts-jest": "^28.0.7", "ts-loader": "^9.3.1", "webpack": "^5.74.0", "webpack-cli": "^4.10.0" }, "browser": { "fs": false, "path": false, "os": false }, "keywords": [ "natural-cron", "cron", "cron-validator", "cron-expression", "node-cron", "task-scheduler", "schedule", "node-schedule", "crontab", "job-scheduler", "time-scheduling" ] }