cron-to-quartz
Version:
Node.js JavaScript library to convert unix or linux CRON syntax to Quartz Scheduler
91 lines (90 loc) • 2.16 kB
JSON
{
"name": "cron-to-quartz",
"version": "1.4.7",
"description": "Node.js JavaScript library to convert unix or linux CRON syntax to Quartz Scheduler",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"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": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.2.1",
"coveralls": "^3.0.0",
"jest": "^22.0.0",
"semantic-release": "^15.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"
},
"release": {
"branch": "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"
]
}
}