UNPKG

cron-validator

Version:
48 lines (47 loc) 1.05 kB
{ "name": "cron-validator", "version": "1.4.0", "description": "Validates cron expressions", "main": "lib/index.js", "author": "Guillaume Rochat", "license": "MIT", "bugs": { "url": "https://github.com/GuillaumeRochat/cron-validator/issues" }, "repository": { "type": "git", "url": "https://github.com/GuillaumeRochat/cron-validator.git" }, "keywords": [ "cron", "validation" ], "files": [ "lib/*" ], "scripts": { "lint": "tslint -t stylish --project \"tsconfig.json\"", "test": "jest --verbose --coverage", "build": "tsc", "prepublishOnly": "npm run test && npm run build" }, "devDependencies": { "@types/jest": "^27.4.0", "jest": "^27.4.7", "ts-jest": "^27.1.3", "ts-node": "^10.4.0", "tslint": "^6.1.3", "tslint-config-standard": "^9.0.0", "typescript": "^3.9.10" }, "jest": { "moduleFileExtensions": [ "js", "ts" ], "transform": { "^.+\\.ts$": "ts-jest" }, "testRegex": "((\\.|/)(test))\\.(ts)$" } }