UNPKG

aws-cron-parser

Version:

A util to parse cron expressions used by AWS services

59 lines (58 loc) 1.51 kB
{ "name": "aws-cron-parser", "version": "1.1.12", "description": "A util to parse cron expressions used by AWS services", "keywords": [ "aws", "cloudwatch", "cron", "parser" ], "license": "MIT", "author": "Vinh Tuong Nguyen", "repository": { "type": "git", "url": "https://github.com/beemhq/aws-cron-parser.git" }, "type": "commonjs", "main": "built/index.js", "types": "built/index.d.ts", "files": [ "built/index*", "built/lib/*" ], "scripts": { "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix", "tsc": "tsc", "test": "jest built/tests/**", "prepublishOnly": "tsc", "benchmark": "node built/benchmark.js" }, "dependencies": { "number-to-words": "^1.2.4" }, "devDependencies": { "@types/benchmark": "^2.1.0", "@types/jest": "^26.0.16", "@types/number-to-words": "^1.2.0", "@typescript-eslint/eslint-plugin": "^4.9.0", "@typescript-eslint/parser": "^4.9.0", "benchmark": "^2.1.4", "eslint": "^7.15.0", "eslint-config-prettier": "^7.0.0", "eslint-plugin-prettier": "^3.2.0", "jest": "^26.4.0", "prettier": "^2.2.1", "typescript": "^4.3.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts,tsx}": [ "eslint --fix" ] } }