Comparing version 1.0.0 to 1.0.2
{ | ||
"name": "cron-async", | ||
"version": "1.0.0", | ||
"version": "1.0.2", | ||
"description": "Execute something on a schedule, using cron syntax, with async/await support.", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"type": "module", | ||
"author": "Ramesh Nair <ram@hiddentao.com>", | ||
@@ -52,2 +53,14 @@ "homepage": "https://hiddentao.github.io/cron-async", | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "tsc --watch", | ||
"test": "mocha", | ||
"test-watch": "mocha --watch --parallel", | ||
"build-docs": "rm -rf ./docs && typedoc", | ||
"publish-docs": "npm run build-docs && gh-pages -d docs", | ||
"prepublishOnly": "npm run build", | ||
"postpublish": "npm run publish-docs", | ||
"release": "release-it", | ||
"commitlint": "commitlint --edit" | ||
}, | ||
"husky": { | ||
@@ -62,12 +75,6 @@ "hooks": { | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "tsc --watch", | ||
"test": "mocha", | ||
"test-watch": "mocha --watch --parallel", | ||
"build-docs": "rm -rf ./docs && typedoc", | ||
"publish-docs": "npm run build-docs && gh-pages -d docs", | ||
"release": "release-it", | ||
"commitlint": "commitlint --edit" | ||
"engineStrict": true, | ||
"engines": { | ||
"node": ">=20.0.0" | ||
} | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23340
Yes