{
  "name": "aws-cron-validate",
  "version": "0.0.1",
  "description": "cron-expression validator written in TypeScript.",
  "scripts": {
    "dev": "nodemon",
    "build": "tsc",
    "lint": "eslint src/**/*.ts",
    "lint-fix": "eslint src/**/*.ts --fix",
    "prettier": "prettier --write src/**/*.ts",
    "tsc-check": "tsc --project ./tsconfig.json --noEmit",
    "test": "jest --coverage",
    "test:watch": "jest --watchAll --verbose"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rabingaire/cron-validate.git"
  },
  "author": "Konstantin L. 'Airfox' Zisiadis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rabingaire/cron-validate/issues"
  },
  "homepage": "https://github.com/rabingaire/cron-validate#readme",
  "keywords": [
    "cron-validator",
    "cron-validation",
    "validation",
    "cron",
    "cron-expression",
    "typescript"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "devDependencies": {
    "@types/jest": "26.0.22",
    "@types/node": "13.13.46",
    "@typescript-eslint/eslint-plugin": "4.17.0",
    "@typescript-eslint/parser": "4.17.0",
    "eslint": "7.23.0",
    "eslint-config-airbnb-base": "14.2.1",
    "eslint-config-prettier": "8.1.0",
    "eslint-plugin-import": "2.22.1",
    "jest": "26.6.3",
    "nodemon": "2.0.7",
    "prettier": "2.2.1",
    "ts-jest": "26.5.3",
    "ts-node": "9.1.1",
    "typescript": "4.2.3"
  },
  "dependencies": {
  }
}
