{
  "name": "redux-form-input-masks",
  "version": "2.0.2",
  "description": "Input masking with redux-form made easy",
  "main": "./dist/bundle.js",
  "typings": "./dist/typings.d.ts",
  "scripts": {
    "build:clean": "rimraf dist",
    "build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
    "build:docs": "cd examples && npm i && npm run build && cpy index.html ../docs && cpy dist/* ../docs/dist",
    "build": "npm run build:clean && npm run build:webpack",
    "test": "jest",
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "lint:eslint": "eslint --ext .js,.jsx src examples",
    "lint:prettier": "lint-staged",
    "commitmsg": "commitlint -e $GIT_PARAMS",
    "precommit": "npm-run-all lint:*",
    "danger-ci": "danger ci --verbose"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/renato-bohler/redux-form-input-masks.git"
  },
  "keywords": [
    "redux",
    "form",
    "redux-form",
    "input",
    "masking",
    "format",
    "formatting",
    "field",
    "react"
  ],
  "author": "Renato Böhler <renato.bohler@gmail.com> (https://github.com/renato-bohler)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/renato-bohler/redux-form-input-masks/issues"
  },
  "homepage": "https://renato-bohler.github.io/redux-form-input-masks",
  "devDependencies": {
    "@commitlint/cli": "^16.2.1",
    "@commitlint/config-conventional": "^16.2.1",
    "@semantic-release/changelog": "^2.0.0",
    "@semantic-release/git": "^4.0.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^7.2.3",
    "babel-jest": "^22.2.2",
    "babel-loader": "^7.1.3",
    "babel-preset-env": "^1.6.1",
    "babel-preset-es2015": "^6.24.1",
    "codecov.io": "^0.1.6",
    "commitizen": "^2.9.6",
    "copy-webpack-plugin": "^4.6.0",
    "cpy-cli": "^1.0.1",
    "cross-env": "^5.1.3",
    "cz-conventional-changelog": "^2.1.0",
    "danger": "2.0.3",
    "eslint": "^4.18.0",
    "eslint-config-airbnb-base": "^12.1.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-config-react-app": "^2.1.0",
    "eslint-plugin-flowtype": "^2.44.0",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jsx-a11y": "^5.1.1",
    "eslint-plugin-react": "^7.6.1",
    "husky": "^0.14.3",
    "intl": "^1.2.5",
    "jest": "^22.3.0",
    "lint-staged": "^6.1.1",
    "npm-run-all": "^4.1.2",
    "prettier": "^1.10.2",
    "rimraf": "^2.6.2",
    "semantic-release": "^15.0.0",
    "webpack": "^3.11.0"
  },
  "jest": {
    "verbose": true,
    "collectCoverage": true,
    "transform": {
      "^.+\\.js$": "babel-jest"
    },
    "globals": {
      "NODE_ENV": "test"
    },
    "moduleFileExtensions": [
      "js"
    ],
    "moduleDirectories": [
      "node_modules"
    ]
  },
  "lint-staged": {
    "*.{js,jsx,css,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "verifyConditions": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git",
      "@semantic-release/github"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      {
        "path": "@semantic-release/git",
        "assets": [
          "package.json",
          "CHANGELOG.md"
        ],
        "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
      }
    ],
    "publish": [
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}
