{
  "name": "redux-form",
  "version": "6.0.4",
  "description": "A higher order component decorator for forms using Redux and React",
  "main": "./lib/index.js",
  "jsnext:main": "./es/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/erikras/redux-form"
  },
  "scripts": {
    "build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
    "build:lib": "babel src --out-dir lib",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
    "build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/redux-form.js",
    "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/redux-form.min.js",
    "clean": "rimraf dist lib",
    "lint": "eslint src",
    "example": "npm --prefix ./examples/$form install && npm --prefix ./examples/$form start",
    "example:asyncValidation": "form=asyncValidation npm run example",
    "example:fieldArrays": "form=fieldArrays 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",
    "prepublish": "npm run test && npm run clean && npm run build",
    "test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\" --require src/__tests__/setup.js",
    "test:watch": "npm test -- --watch",
    "test:cov": "nyc --reporter=lcov --reporter=text npm test",
    "test:codecov": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
  },
  "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": {
    "array-findindex-polyfill": "^0.1.0",
    "deep-equal": "^1.0.1",
    "es6-error": "^3.1.0",
    "hoist-non-react-statics": "^1.0.5",
    "invariant": "^2.2.1",
    "is-promise": "^2.1.0",
    "lodash": "^4.12.0",
    "lodash-es": "^4.12.0",
    "shallowequal": "^0.2.2"
  },
  "devDependencies": {
    "babel-cli": "^6.3.17",
    "babel-core": "^6.3.26",
    "babel-eslint": "^6.0.4",
    "babel-loader": "^6.2.0",
    "babel-plugin-lodash": "^3.1.2",
    "babel-plugin-syntax-async-functions": "^6.5.0",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
    "babel-plugin-transform-regenerator": "^6.6.5",
    "babel-preset-es2015-no-commonjs": "0.0.2",
    "babel-preset-react": "^6.1.18",
    "babel-preset-stage-2": "^6.1.18",
    "babel-register": "^6.3.13",
    "codecov.io": "^0.1.6",
    "cross-env": "^2.0.0",
    "eslint": "^3.3.1",
    "eslint-config-rackt": "^1.1.1",
    "eslint-plugin-react": "^6.1.2",
    "expect": "^1.14.0",
    "expect-element": "^1.1.1",
    "expect-immutable": "0.0.3",
    "expect-predicate": "^1.0.0",
    "flux-standard-action": "^0.6.1",
    "jsdom": "^9.1.0",
    "lodash-webpack-plugin": "^0.10.0",
    "mocha": "^3.0.2",
    "nyc": "^8.1.0",
    "react": "^15.3.1",
    "react-addons-test-utils": "^15.3.1",
    "react-dom": "^15.3.1",
    "react-redux": "^4.4.1",
    "redux": "^3.3.1",
    "redux-immutablejs": "0.0.8",
    "rifraf": "^2.0.2",
    "rimraf": "^2.5.1",
    "webpack": "^1.13.2"
  },
  "peerDependencies": {
    "react": "^15.0.0",
    "react-redux": "^4.3.0",
    "redux": "^3.0.0"
  },
  "files": [
    "README.md",
    "es",
    "lib",
    "dist",
    "immutable.js"
  ],
  "npmName": "redux-form",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ]
}
