{
  "name": "@kgram/redux-form",
  "version": "8.1.1-fix.1",
  "description": "A higher order component decorator for forms using Redux and React",
  "main": "./lib/index.js",
  "module": "./es/index.js",
  "modules.root": "./es",
  "jsnext:main": "./es/index.js",
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/erikras/redux-form"
  },
  "scripts": {
    "analyze": "webpack src/index.js dist/redux-form.js -p --bail --profile --json > stats.json && webpack-bundle-analyzer stats.json",
    "build": "npm run clean && npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min && npm run build:flow",
    "build:lib": "babel src --out-dir lib --ignore \"src/**/__tests__\"",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore \"src/**/__tests__\"",
    "build:flow": "cp src/*.js.flow lib && cp src/selectors/*.js.flow lib/selectors && cp src/*.js.flow es && cp src/selectors/*.js.flow es/selectors",
    "build:umd": "cross-env NODE_ENV=development webpack src/index.js -o dist/redux-form.js",
    "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js -o dist/redux-form.min.js",
    "clean": "rimraf dist lib es",
    "lint": "eslint src",
    "example": "npm --prefix ./examples/$form install && npm --prefix ./examples/$form start",
    "example:asyncChangeValidation": "form=asyncChangeValidation npm run example",
    "example:asyncValidation": "form=asyncValidation npm run example",
    "example:fieldArrays": "form=fieldArrays npm run example",
    "example:fieldLevelValidation": "form=fieldLevelValidation npm run example",
    "example:immutable": "form=immutable npm run example",
    "example:initializeFromState": "form=initializeFromState npm run example",
    "example:material-ui": "form=material-ui npm run example",
    "example:normalizing": "form=normalizing npm run example",
    "example:react-widgets": "form=react-widgets npm run example",
    "example:selectingFormValues": "form=selectingFormValues npm run example",
    "example:simple": "form=simple npm run example",
    "example:submitValidation": "form=submitValidation npm run example",
    "example:syncValidation": "form=syncValidation npm run example",
    "example:wizard": "form=wizard npm run example",
    "precommit": "lint-staged",
    "prepublishOnly": "npm run lint && npm run test:cov && npm run test:flow && npm run clean && npm run build",
    "validate": "npm run lint && npm run test:cov && npm run test:flow && npm run clean && npm run build",
    "test": "cross-env NODE_ENV=test jest src --runInBand",
    "test:flow": "node scripts/patch-immutable-flow-error.js && opencollective-postinstall && flow check",
    "test:watch": "npm test -- --watch",
    "test:cov": "npm run test -- --coverage"
  },
  "keywords": [
    "react",
    "reactjs",
    "flux",
    "redux",
    "react-redux",
    "redux-form",
    "form",
    "decorator"
  ],
  "author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/erikras/redux-form/issues"
  },
  "homepage": "https://redux-form.com/",
  "dependencies": {
    "@babel/runtime": "^7.2.0",
    "es6-error": "^4.1.1",
    "hoist-non-react-statics": "^3.2.1",
    "invariant": "^2.2.4",
    "is-promise": "^2.1.0",
    "lodash": "^4.17.11",
    "lodash-es": "^4.17.11",
    "prop-types": "^15.6.1",
    "react-is": "^16.7.0",
    "react-lifecycles-compat": "^3.0.4"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/plugin-proposal-class-properties": "^7.2.3",
    "@babel/plugin-proposal-decorators": "^7.2.3",
    "@babel/plugin-proposal-export-namespace-from": "^7.0.0",
    "@babel/plugin-proposal-function-sent": "^7.0.0",
    "@babel/plugin-proposal-json-strings": "^7.0.0",
    "@babel/plugin-proposal-numeric-separator": "^7.0.0",
    "@babel/plugin-proposal-throw-expressions": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^7.0.0",
    "@babel/plugin-transform-modules-commonjs": "^7.0.0",
    "@babel/plugin-transform-react-jsx-source": "^7.0.0",
    "@babel/plugin-transform-regenerator": "^7.0.0",
    "@babel/plugin-transform-runtime": "^7.2.0",
    "@babel/preset-env": "^7.2.3",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/register": "^7.0.0",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^23.4.2",
    "babel-loader": "^8.0.4",
    "babel-plugin-istanbul": "^5.1.0",
    "babel-plugin-lodash": "^3.3.4",
    "babel-plugin-syntax-async-functions": "^6.13.0",
    "babel-preset-es2015-no-commonjs": "^0.0.2",
    "codecov.io": "^0.1.6",
    "cross-env": "^5.1.6",
    "deep-equal": "^1.0.1",
    "eslint": "^5.11.0",
    "eslint-config-react-app": "^3.0.6",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-flowtype": "^3.2.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-react": "^7.11.1",
    "flow-bin": "^0.72.0",
    "flux-standard-action": "^2.0.3",
    "glow": "^1.2.2",
    "husky": "^1.2.1",
    "immutable": "3.8.2",
    "insert-line": "^1.1.0",
    "jest": "^23.6.0",
    "lint-staged": "^8.1.0",
    "lodash-webpack-plugin": "^0.11.5",
    "opencollective-postinstall": "^2.0.1",
    "prettier": "^1.15.3",
    "prettier-eslint-cli": "^4.7.1",
    "react": "^16.7.0",
    "react-dom": "^16.7.0",
    "react-redux": "^6.0.0",
    "redux": "^4.0.1",
    "redux-immutablejs": "^0.0.8",
    "rifraf": "^2.0.3",
    "rimraf": "^2.5.4",
    "stringstream": "^1.0.0",
    "tmp": "0.0.33",
    "uglifyjs-webpack-plugin": "^2.1.0",
    "webpack": "^4.28.2",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.1.2"
  },
  "peerDependencies": {
    "react": "^16.4.0",
    "react-redux": "^6.0.0",
    "redux": "^3.0.0 || ^4.0.0"
  },
  "files": [
    "README.md",
    "es",
    "lib",
    "dist",
    "immutable.js",
    "*.js.flow"
  ],
  "lint-staged": {
    "*.{js,json,md,css}": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "collectCoverageFrom": [
      "src/**/*.js",
      "!src/**/__tests__/**/*.js"
    ],
    "coverageReporters": [
      "text",
      "lcov",
      "html"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "testRegex": "__tests__/.*\\.spec\\.js$",
    "testEnvironment": "jsdom"
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/redux-form"
  }
}
