@nivinjoseph/n-job
Version:
Job scheduling and execution
58 lines (57 loc) • 2.12 kB
JSON
{
"name": "@nivinjoseph/n-job",
"version": "2.0.4",
"description": "Job scheduling and execution",
"packageManager": "yarn@4.0.2",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"ts-compile": "tsc -p .",
"ts-lint": "eslint . --ext .ts",
"ts-build": "yarn ts-compile && yarn ts-lint",
"ts-build-dist": "yarn ts-build && tsc -p ./dist",
"test": "yarn ts-build && node --test --enable-source-maps ./test/**/*.test.js",
"clean-src": "find ./src -name '*.js' -delete -o -name '*.map' -delete",
"clean-dist": "find ./dist -name '*.js' -delete -o -name '*.map' -delete -o -name '*.ts' -delete",
"clean-test": "find ./test -name '*.js' -delete -o -name '*.map' -delete",
"clean-all": "yarn clean-src && yarn clean-test && yarn clean-dist",
"publish-package": "npm run ts-build-dist && git add . && git commit -m 'preparing to publish new version' && git push && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nivinjoseph/n-job.git"
},
"keywords": [
"job"
],
"author": "NiviN",
"license": "MIT",
"bugs": {
"url": "https://github.com/nivinjoseph/n-job/issues"
},
"homepage": "https://github.com/nivinjoseph/n-job#readme",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/luxon": "^3.7.1",
"@types/node": "^24.10",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@nivinjoseph/n-defensive": "^2.0.2",
"@nivinjoseph/n-exception": "^2.0.2",
"@nivinjoseph/n-ext": "^2.0.2",
"@nivinjoseph/n-ject": "^3.0.4",
"@nivinjoseph/n-log": "^3.0.6",
"@nivinjoseph/n-util": "^3.2.0",
"luxon": "^3.7.2"
},
"engines": {
"node": ">=24.10"
}
}