UNPKG

auto-tasker

Version:

A Node.js scheduling utility that simplifies task scheduling with human-readable syntax. Convert intuitive time formats into cron expressions and schedule tasks effortlessly using node-schedule

50 lines (49 loc) 1.25 kB
{ "name": "auto-tasker", "version": "0.0.8", "description": "A Node.js scheduling utility that simplifies task scheduling with human-readable syntax. Convert intuitive time formats into cron expressions and schedule tasks effortlessly using node-schedule", "main": "./dist/index.js", "module": "./dist/index.mjs", "repository": { "url": "https://github.com/omarAboElWafa/auto-tasks" }, "directories": { "test": "tests" }, "scripts": { "build": "webpack --config webpack.config.js", "test": "jest", "lint": "eslint ./src", "lint-fix": "eslint ./src --fix" }, "keywords": [ "scheduling", "cron", "task", "task-scheduler", "cron-schedule", "node-cron", "node-schedule" ], "author": "omarAboElWafa", "license": "MIT", "devDependencies": { "@babel/core": "^7.25.7", "@babel/preset-env": "^7.25.7", "babel-loader": "^8.4.1", "eslint": "^9.12.0", "globals": "^15.10.0", "jest": "^29.7.0", "webpack": "^5.95.0", "webpack-cli": "^4.10.0", "webpack-node-externals": "^3.0.0" }, "dependencies": { "node-cron": "^3.0.3" }, "files": [ "dist", "README.md", "LICENSE" ] }