cron-to-quartz
Version:
Node.js JavaScript library to convert unix or linux CRON syntax to Quartz Scheduler
99 lines (98 loc) • 2.2 kB
JSON
{
"name": "cron-to-quartz",
"version": "1.4.14",
"description": "Node.js JavaScript library to convert unix or linux CRON syntax to Quartz Scheduler",
"main": "index.js",
"scripts": {
"test": "jest",
"semantic-release": "semantic-release"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/lirantal/cron-to-quartz.git"
},
"keywords": [
"crontab",
"cron",
"quartz",
"linux",
"scheduler",
"scheduling"
],
"author": {
"name": "Liran Tal",
"email": "liran.tal@gmail.com",
"url": "http://www.enginx.com"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"jest": "^29.0.0",
"semantic-release": "^25.0.0"
},
"bugs": {
"url": "https://github.com/lirantal/cron-to-quartz/issues"
},
"homepage": "https://github.com/lirantal/cron-to-quartz#readme",
"jest": {
"verbose": true,
"collectCoverage": true,
"testEnvironment": "node"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"release": {
"branches": [
"master"
],
"analyzeCommits": {
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/github"
]
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.10.0"
}
}