{
  "name": "@cxing/date-selector",
  "version": "0.0.32",
  "description": "A React date selector control using Luxon",
  "keywords": [
    "react",
    "date",
    "timezone",
    "locale",
    "i18n",
    "selector",
    "control",
    "luxon"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/cutterbl/date-selector.git"
  },
  "bugs": {
    "url": "https://github.com/cutterbl/date-selector/issues"
  },
  "homepage": "https://cutterscrossing.com/date-selector",
  "author": "Steve 'Cutter' Blades",
  "license": "MIT",
  "main": "dist/date-selector.cjs.js",
  "module": "dist/date-selector.es.js",
  "exports": {
    ".": {
      "import": "./dist/date-selector.es.js",
      "require": "./dist/date-selector.cjs.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "release": "standard-version",
    "build": "cross-env NODE_ENV=development rollup -c ./configs/rollup.config.js",
    "prettier": "prettier --write 'src/**/*.js'",
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "start-storybook -p 6006",
    "build-storybook": "build-storybook",
    "deploy-storybook": "storybook-to-ghpages"
  },
  "dependencies": {
    "@babel/runtime": "7.14.0",
    "classnames": "2.3.1",
    "luxon": "1.27.0",
    "prop-types": "15.7.2",
    "react": "17.0.2",
    "react-dom": "17.0.2"
  },
  "devDependencies": {
    "@babel/core": "7.14.3",
    "@babel/plugin-proposal-nullish-coalescing-operator": "7.14.2",
    "@babel/plugin-proposal-optional-chaining": "7.14.2",
    "@babel/plugin-transform-runtime": "7.14.3",
    "@babel/preset-env": "7.14.2",
    "@babel/preset-react": "7.13.13",
    "@commitlint/cli": "12.1.4",
    "@commitlint/config-conventional": "12.1.4",
    "@emotion/babel-plugin": "11.3.0",
    "@emotion/eslint-plugin": "11.2.0",
    "@emotion/react": "11.4.0",
    "@rollup/plugin-babel": "5.3.0",
    "@rollup/plugin-commonjs": "19.0.0",
    "@rollup/plugin-json": "4.1.0",
    "@rollup/plugin-node-resolve": "13.0.0",
    "@storybook/addon-actions": "6.2.9",
    "@storybook/addon-essentials": "6.2.9",
    "@storybook/addon-links": "6.2.9",
    "@storybook/react": "6.2.9",
    "@storybook/storybook-deployer": "2.8.8",
    "@storybook/theming": "6.2.9",
    "@typescript-eslint/eslint-plugin": "4.24.0",
    "@typescript-eslint/parser": "4.24.0",
    "babel-eslint": "10.1.0",
    "babel-loader": "8.2.2",
    "cross-env": "7.0.3",
    "eslint": "7.26.0",
    "eslint-config-react-app": "6.0.0",
    "eslint-plugin-flowtype": "5.7.2",
    "eslint-plugin-import": "2.23.2",
    "eslint-plugin-jsx-a11y": "6.4.1",
    "eslint-plugin-react": "7.23.2",
    "eslint-plugin-react-hooks": "4.2.0",
    "git-branch-is": "4.0.0",
    "husky": "4.3.0",
    "prettier": "2.3.0",
    "react-is": "17.0.2",
    "rollup": "2.48.0",
    "rollup-plugin-cleanup": "3.2.1",
    "rollup-plugin-clear": "2.0.7",
    "rollup-plugin-eslint": "7.0.0",
    "standard-version": "9.3.0"
  },
  "husky": {
    "hooks": {
      "commit-msg": "if git-branch-is master; then commitlint -E HUSKY_GIT_PARAMS; fi"
    }
  },
  "standard-version": {
    "header": "Changelog",
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "hidden": true
      },
      {
        "type": "perf",
        "hidden": true
      },
      {
        "type": "test",
        "hidden": true
      }
    ],
    "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
    "compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
    "issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
    "userUrlFormat": "{{host}}/{{user}}",
    "releaseCommitMessageFormat": "chore(release): {{currentTag}}",
    "issuePrefixes": [
      "#"
    ],
    "scripts": {
      "posttag": "git push --follow-tags origin master"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "subject-case": [
        2,
        "always",
        "sentence-case"
      ]
    }
  },
  "storybook-deployer": {
    "gitUsername": "cutterbl",
    "gitEmail": "no.junk@cutterscrossing.com",
    "commitMessage": "ci: Deploy Storybook to GitHub Pages"
  },
  "eslintConfig": {
    "extends": "react-app",
    "plugins": [
      "@emotion"
    ],
    "overrides": [
      {
        "files": [
          "./src/*.js"
        ],
        "excludedFiles": "*.(spec|test).js",
        "parserOptions": {
          "ecmaVersion": 2020,
          "sourceType": "module",
          "ecmaFeatures": {
            "jsx": true
          }
        }
      }
    ],
    "rules": {
      "@emotion/pkg-renaming": "error",
      "@emotion/jsx-import": "off",
      "@emotion/no-vanilla": "error",
      "@emotion/import-from-emotion": "error",
      "@emotion/styled-import": "error",
      "react/jsx-uses-react": "off",
      "react/react-in-jsx-scope": "off"
    }
  },
  "browserslist": {
    "production": [
      "> 1%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version",
      "last 1 edge version"
    ]
  },
  "prettier": {
    "printWidth": 80,
    "singleQuote": true,
    "tabWidth": 2,
    "useTabs": false
  }
}
