{
  "name": "react-select",
  "version": "2.0.0",
  "description": "A Select control built with and for ReactJS",
  "main": "lib/index.js",
  "module": "dist/react-select.esm.js",
  "author": "Jed Watson",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/JedWatson/react-select.git"
  },
  "dependencies": {
    "classnames": "^2.2.5",
    "emotion": "^9.1.2",
    "memoize-one": "^4.0.0",
    "prop-types": "^15.6.0",
    "raf": "^3.4.0",
    "react-input-autosize": "^2.2.1",
    "react-transition-group": "^2.2.1"
  },
  "devDependencies": {
    "@atlaskit/button": "^7.0.2",
    "@atlaskit/icon": "^11.0.1",
    "@atlaskit/modal-dialog": "^4.0.3",
    "@atlaskit/spinner": "^5.0.0",
    "@atlaskit/tooltip": "^9.1.4",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.2.1",
    "babel-loader": "^7.1.2",
    "babel-plugin-emotion": "^9.1.2",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "babel-preset-react": "^6.24.1",
    "bundlesize": "^0.17.0",
    "chroma-js": "^1.3.6",
    "chrono-node": "^1.3.5",
    "codesandboxer": "^0.1.1",
    "concurrently": "^3.5.1",
    "copy-webpack-plugin": "^4.3.1",
    "coveralls": "^2.11.12",
    "cross-env": "^5.1.3",
    "css-loader": "^0.28.7",
    "cypress": "^1.4.1",
    "dotenv": "^5.0.1",
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "enzyme-to-json": "^3.3.0",
    "eslint": "^4.6.1",
    "eslint-plugin-react": "^7.3.0",
    "extract-react-types-loader": "^0.1.2",
    "flow-bin": "^0.72.0",
    "gh-pages": "^1.1.0",
    "html-webpack-plugin": "^2.30.1",
    "husky": "^0.14.3",
    "istanbul": "^0.4.5",
    "jest": "^22.0.5",
    "jest-in-case": "^1.0.2",
    "lint-staged": "^7.0.5",
    "moment": "^2.20.1",
    "nps": "^5.7.1",
    "nps-utils": "^1.3.0",
    "nyc": "^11.1.0",
    "pretty-proptypes": "^0.2.1",
    "raf-schd": "^2.1.0",
    "raw-loader": "^0.5.1",
    "react": "^16.2.0",
    "react-codesandboxer": "^2.0.1",
    "react-dom": "^16.2.0",
    "react-helmet": "^5.2.0",
    "react-markings": "^1.3.0",
    "react-router-dom": "^4.2.2",
    "react-syntax-highlighter": "^7.0.1",
    "rollup": "^0.57.1",
    "rollup-plugin-babel": "^3.0.2",
    "rollup-plugin-commonjs": "^9.1.0",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-uglify": "^3.0.0",
    "style-loader": "^0.19.1",
    "uglify-es": "^3.3.9",
    "unfetch": "^3.0.0",
    "webpack": "^3.10.0",
    "webpack-dev-server": "^2.9.7"
  },
  "peerDependencies": {
    "react": "^15.3.0 || ^16.0.0",
    "react-dom": "^15.3.0 || ^16.0.0"
  },
  "scripts": {
    "build": "nps build && bundlesize",
    "watch": "nps build.watch",
    "coveralls": "cat coverage/lcov.info | coveralls",
    "lint": "eslint .",
    "deploy": "cross-env NODE_ENV=production nps publish",
    "start": "webpack-dev-server --progress",
    "fresh": "rm -rf node_modules && yarn install",
    "test": "npm run test:jest && npm run test:cypress",
    "test:jest": "jest --coverage",
    "e2e": "concurrently --kill-others --success=first --names 'SERVER,E2E' 'yarn start --progress=false --no-info' 'yarn test:cypress'",
    "test:cypress": "cypress run --spec ./cypress/integration/select_spec.js",
    "test:cypress-watch": "node ./node_modules/.bin/cypress open",
    "precommit": "flow check && lint-staged"
  },
  "files": [
    "dist",
    "lib",
    "src"
  ],
  "keywords": [
    "combobox",
    "form",
    "input",
    "multiselect",
    "react",
    "react-component",
    "select",
    "ui"
  ],
  "bundlesize": [
    {
      "path": "./dist/react-select.js"
    }
  ],
  "jest": {
    "modulePathIgnorePatterns": [
      "./node_modules"
    ],
    "transform": {
      "^.+\\.js$": "babel-jest"
    },
    "testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$",
    "setupFiles": [
      "./enzymeAdapter.setup.js"
    ]
  },
  "lint-staged": {
    "*.js": "eslint"
  }
}
