{
  "name": "cron-converter",
  "version": "2.1.0",
  "description": "Cron string converter",
  "type": "module",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "./dist/mjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist",
    "src",
    "tsconfig.json"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run mjs && npm run cjs",
    "cjs": "echo \"{\\\"type\\\": \\\"commonjs\\\"}\" > dist/cjs/package.json",
    "mjs": "echo \"{\\\"type\\\": \\\"module\\\"}\" > dist/mjs/package.json",
    "prepare": "npm run build",
    "test": "mocha --extension ts --require ts-node/register --loader=ts-node/esm test",
    "coverage": "c8 -r lcov -e .ts -x 'test/**/*' npm run test"
  },
  "keywords": [
    "cron",
    "cronjob",
    "crontab",
    "schedule",
    "parser"
  ],
  "author": "Rouslan Placella <rouslan@placella.com> (https://github.com/roccivic)",
  "bugs": {
    "url": "https://github.com/roccivic/cron-converter/issues"
  },
  "homepage": "https://github.com/roccivic/cron-converter#readme",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/roccivic/cron-converter.git"
  },
  "devDependencies": {
    "@types/chai": "^4.2.21",
    "@types/luxon": "^3.1.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "*",
    "c8": "^7.12.0",
    "chai": "^4.3.4",
    "husky": "^7.0.2",
    "mocha": "^9.1.1",
    "prettier": "^2.3.2",
    "pretty-quick": "^3.1.1",
    "ts-node": "^10.2.1",
    "typescript": "^4.4.2"
  },
  "dependencies": {
    "luxon": "^3.1.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  }
}
