{
  "name": "react-bootstrap-typeahead",
  "version": "4.2.0",
  "description": "React typeahead with Bootstrap styling",
  "homepage": "http://ericgio.github.io/react-bootstrap-typeahead/",
  "author": "ericgio",
  "license": "MIT",
  "files": [
    "css/",
    "dist/",
    "docs/",
    "es/",
    "lib",
    "LICENSE.md"
  ],
  "main": "lib/index.js",
  "module": "es/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/ericgio/react-bootstrap-typeahead.git"
  },
  "bugs": "https://github.com/ericgio/react-bootstrap-typeahead/issues",
  "scripts": {
    "build": "npm run clean && npm run build:css && npm run build:cjs && npm run build:es && npm run build:dist && npm run build:example",
    "build:css": "node ./scripts/buildCSS.js",
    "build:dist": "rollup -c",
    "build:cjs": "BABEL_ENV=cjs babel src --out-dir lib",
    "build:es": "BABEL_ENV=es babel src --out-dir es",
    "build:example": "webpack --mode production --config example/webpack.config.js",
    "check": "npm run lint && npm run flow && npm test",
    "clean": "rimraf coverage && rimraf css && rimraf dist && rimraf lib && rimraf es",
    "deploy-example": "node ./scripts/deployExample.js",
    "flow": "flow",
    "lint": "eslint . --report-unused-disable-directives",
    "lint:fix": "eslint . --fix",
    "postpublish": "npm run deploy-example",
    "prepublishOnly": "npm run check && npm run build",
    "start": "webpack --mode development -w --progress --config example/webpack.config.js",
    "test": "jest --silent",
    "test:coverage": "jest --coverage"
  },
  "dependencies": {
    "@babel/runtime": "^7.3.4",
    "classnames": "^2.2.0",
    "escape-string-regexp": "^3.0.0",
    "fast-deep-equal": "^3.1.1",
    "invariant": "^2.2.1",
    "lodash.debounce": "^4.0.8",
    "prop-types": "^15.5.8",
    "react-overlays": "^1.0.0",
    "react-popper": "^1.0.0",
    "scroll-into-view-if-needed": "^2.2.20",
    "warning": "^4.0.1"
  },
  "peerDependencies": {
    "react": ">=16.3.0",
    "react-dom": ">=16.3.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/plugin-proposal-class-properties": "^7.2.3",
    "@babel/plugin-proposal-export-default-from": "^7.2.0",
    "@babel/plugin-transform-modules-commonjs": "^7.2.0",
    "@babel/plugin-transform-runtime": "^7.3.4",
    "@babel/preset-env": "^7.2.3",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@rollup/plugin-commonjs": "^11.0.2",
    "@rollup/plugin-node-resolve": "^7.1.1",
    "@rollup/plugin-replace": "^2.3.1",
    "babel-eslint": "^10.0.1",
    "babel-loader": "^8.0.5",
    "babel-plugin-dev-expression": "^0.2.1",
    "babel-plugin-transform-imports": "^2.0.0",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.6",
    "circular-dependency-plugin": "^5.0.2",
    "coveralls": "^3.0.3",
    "css-loader": "^3.0.0",
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.5.0",
    "es6-promise": "^4.0.5",
    "eslint": "^6.0.1",
    "eslint-config-ericgio": "^5.0.0",
    "eslint-plugin-flowtype": "^4.3.0",
    "flow-bin": "^0.122.0",
    "gh-pages": "^2.0.1",
    "husky": "^4.2.3",
    "isomorphic-fetch": "^2.2.1",
    "jest": "^24.0.0",
    "json-loader": "^0.5.4",
    "lint-staged": "^10.0.8",
    "lodash": "^4.17.11",
    "marked": "^0.8.0",
    "node-sass": "^4.5.3",
    "raw-loader": "^4.0.0",
    "react": "^16.5.0",
    "react-axe": "^3.4.1",
    "react-bootstrap": "^0.32.1",
    "react-dom": "^16.5.0",
    "react-prism": "^4.3.2",
    "react-test-renderer": "^16.5.0",
    "react-waypoint": "^9.0.0",
    "reactstrap": "^8.1.1",
    "rimraf": "^3.0.0",
    "rollup": "^2.0.5",
    "rollup-plugin-babel": "^4.3.2",
    "rollup-plugin-size-snapshot": "^0.11.0",
    "rollup-plugin-terser": "^5.1.2",
    "sass-loader": "^8.0.0",
    "style-loader": "^1.0.0",
    "terser-webpack-plugin": "^2.1.3",
    "webpack": "^4.6.0",
    "webpack-cli": "^3.1.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && flow",
      "pre-push": "npm run check"
    }
  },
  "lint-staged": {
    "*.js": "eslint --report-unused-disable-directives"
  },
  "keywords": [
    "auto complete",
    "auto suggest",
    "auto-complete",
    "auto-suggest",
    "autocomplete",
    "autosuggest",
    "bootstrap",
    "bootstrap tokenizer",
    "bootstrap typeahead",
    "bootstrap-tokenizer",
    "bootstrap-typeahead",
    "react",
    "react autocomplete",
    "react autosuggest",
    "react tokenizer",
    "react typeahead",
    "react-autocomplete",
    "react-autosuggest",
    "react-bootstrap",
    "react-bootstrap-tokenizer",
    "react-bootstrap-typeahead",
    "react-tokenizer",
    "react-typeahead",
    "tokenizer",
    "typeahead"
  ]
}
