cron-js-parser
Version:
Cron expression parser to human readable format from Expression as well as Individual values
67 lines (66 loc) • 1.95 kB
JSON
{
"name": "cron-js-parser",
"version": "1.1.0",
"description": "Cron expression parser to human readable format from Expression as well as Individual values",
"main": "./dist/cron-js-parser.js",
"types": "./dist/index.d.ts",
"prepublishOnly": "npm run build",
"scripts": {
"build": "npx webpack --config webpack.config.js && tsc -p tsconfig-esm.json",
"build-cjs-only": "npx webpack --config webpack.config.js",
"build-esm-only": "tsc -p tsconfig-esm.json",
"clean": "rm -rf node_modules && rm -rf dist && rm package-lock.json && npm i",
"clean:pwsh": "powershell -Command \"Remove-Item -Recurse -Force -Path node_modules; Remove-Item -Recurse -Force -Path dist; Remove-Item -Force -Path package-lock.json; npm install;\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adagioNeo/cron-js-parser.git"
},
"author": "adagioneo",
"license": "MIT",
"bugs": {
"url": "https://github.com/adagioNeo/cron-js-parser/issues"
},
"homepage": "https://github.com/adagioNeo/cron-js-parser#readme",
"files": [
"dist"
],
"dependencies": {
"cronstrue": "^2.59.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^29.3.2",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^5.1.4"
},
"bundledDependencies": [
"cronstrue"
],
"keywords": [
"jscon",
"cron",
"quartz scheduler",
"cronjob",
"schedule",
"parser",
"cron expression",
"cron description",
"pretty cron",
"cron for humans",
"cron translated",
"multi language support",
"cron from array of values",
"java backend",
"native",
"javascript cron object notation"
],
"bundleDependencies": [
"cronstrue"
]
}