UNPKG

expressots-cron

Version:

Expressots - Cron Provider (expressots-cron)

149 lines (148 loc) 3.87 kB
{ "name": "expressots-cron", "version": "1.1.1", "description": "Expressots - Cron Provider (expressots-cron)", "author": "Lhon Rafaat Mohammed", "main": "./lib/cjs/index.js", "types": "./lib/cjs/types/index.d.ts", "exports": { ".": { "import": { "types": "./lib/esm/types/index.d.ts", "default": "./lib/esm/index.mjs" }, "require": { "types": "./lib/cjs/types/index.d.ts", "default": "./lib/cjs/index.js" } } }, "files": [ "lib/**/*" ], "license": "MIT", "homepage": "https://github.com/LhonRafaat/expressots-cron", "repository": { "type": "git", "url": "https://github.com/LhonRafaat/expressots-cron" }, "bugs": { "url": "https://github.com/LhonRafaat/expressots-cron/issues" }, "publishConfig": { "access": "public" }, "keywords": [ "expressots", "nodejs", "cron", "cron-decorator" ], "engines": { "node": ">=18.0.0" }, "scripts": { "prepare": "husky", "clean": "node scripts/rm.js lib", "copy": "node scripts/copy.js package.json README.md CHANGELOG.md lib", "build": "npm run clean && npm run build:cjs && npm run copy", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "release": "release-it", "prepublish": "npm run build && npm pack", "publish": "npm publish --tag latest", "test": "vitest run --reporter default", "test:watch": "vitest run --watch", "coverage": "vitest run --coverage", "format": "prettier --write \"src/**/*.ts\" --cache", "lint": "eslint \"src/**/*.ts\"", "lint:fix": "eslint \"src/**/*.ts\" --fix" }, "dependencies": { "@expressots/core": "2.16.2", "cron": "^3.1.7", "inversify": "6.0.2", "reflect-metadata": "0.2.2", "uuid": "^10.0.0" }, "devDependencies": { "@codecov/vite-plugin": "1.1.0", "@commitlint/cli": "19.5.0", "@commitlint/config-conventional": "^19.2.2", "@release-it/conventional-changelog": "8.0.2", "@types/express": "4.17.21", "@types/node": "^22.5.1", "@types/reflect-metadata": "^0.1.0", "@typescript-eslint/eslint-plugin": "8.6.0", "@typescript-eslint/parser": "8.2.0", "@vitest/coverage-v8": "2.0.5", "dotenv": "^16.4.5", "eslint": "9.10.0", "eslint-config-prettier": "9.1.0", "express": "^4.19.2", "husky": "9.1.6", "prettier": "3.3.3", "release-it": "17.6.0", "typescript": "^5.5.4", "vite": "5.4.6", "vite-tsconfig-paths": "5.0.1", "vitest": "2.0.5" }, "release-it": { "git": { "commitMessage": "chore(release): ${version}" }, "github": { "release": true }, "npm": { "publish": false }, "plugins": { "@release-it/conventional-changelog": { "infile": "CHANGELOG.md", "preset": { "name": "conventionalcommits", "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "perf", "section": "Performance Improvements" }, { "type": "revert", "section": "Reverts" }, { "type": "docs", "section": "Documentation" }, { "type": "refactor", "section": "Code Refactoring" }, { "type": "test", "section": "Tests" }, { "type": "build", "section": "Build System" }, { "type": "ci", "section": "Continuous Integrations" } ] } } } } }