{
  "name": "@gforge/react-typeahead-ts",
  "version": "1.2.1",
  "description": "A typescript rewrite of the react-typehead npm package",
  "main": "dist/typeahead.js",
  "module": "dist/typeahead.es6.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "jest --env=jsdom",
    "test:watch": "npm run test -- --watch",
    "start": "cross-env NODE_ENV=development tsc-watch --project tsconfig.base.json  --onSuccess \"rollup -c\"",
    "prebuild": "rimraf dist",
    "build": "npm run compile",
    "compile": "tsc -p tsconfig.base.json  && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
    "prepare": "npm run build",
    "format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md'",
    "precommit": "lint-staged",
    "lint": "eslint . --ext ts,tsx",
    "lint:fix": "npm run lint --fix",
    "demo": "parcel serve ./demo/index.html --out-dir demo/dist",
    "build:demo": "parcel build demo/index.html --out-dir demo/dist --public-url=/react-typeahead-ts",
    "deploy": "npm run build:demo && gh-pages -d demo/dist",
    "reset:type": "rimraf nodemodules/@types && npm install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gforge/react-typeahead-ts.git"
  },
  "keywords": [
    "reactstrap",
    "typeahead",
    "react",
    "component"
  ],
  "author": "Max Gordon",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gforge/react-typeahead-ts/issues"
  },
  "homepage": "https://gforge.github.com/react-typeahead-ts",
  "dependencies": {
    "classnames": "^2.2.6",
    "fuzzy": "^0.1.3"
  },
  "devDependencies": {
    "@types/classnames": "^2.2.10",
    "@types/enzyme": "^3.10.5",
    "@types/enzyme-adapter-react-16": "^1.0.6",
    "@types/jest": "^26.0.5",
    "@types/lodash": "^4.14.157",
    "@types/react": "^16.9.43",
    "@types/react-dom": "^16.9.8",
    "@types/reactstrap": "^8.5.0",
    "@types/sinon": "^9.0.4",
    "@typescript-eslint/eslint-plugin": "^3.7.0",
    "@typescript-eslint/parser": "^3.7.0",
    "bootstrap": "^4.5.0",
    "create-react-class": "^15.6.3",
    "cross-env": "^7.0.2",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.2",
    "enzyme-to-json": "^3.5.0",
    "eslint": "^7.5.0",
    "eslint-config-airbnb-typescript": "^9.0.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsx-a11y": "^6.3.1",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-react": "^7.20.3",
    "eslint-plugin-react-hooks": "^4.0.8",
    "formik": "^2.1.5",
    "gh-pages": "^3.1.0",
    "jest": "^26.1.0",
    "jest-cli": "^26.1.0",
    "lint-staged": "10.2.11",
    "lodash": "^4.17.19",
    "parcel": "^1.12.4",
    "prettier": "2.0.5",
    "raf": "^3.4.0",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-syntax-highlighter": "^12.2.1",
    "react-test-renderer": "^16.13.1",
    "reactstrap": "^8.5.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.22.1",
    "rollup-plugin-commonjs": "10.1.0",
    "rollup-plugin-filesize": "9.0.2",
    "rollup-plugin-replace": "2.2.0",
    "rollup-plugin-sourcemaps": "0.6.2",
    "rollup-plugin-terser": "^6.1.0",
    "sinon": "^9.0.2",
    "ts-jest": "^26.1.3",
    "tsc-watch": "4.2.9",
    "tslib": "^2.0.0",
    "typescript": "^3.9.7"
  },
  "peerDependencies": {
    "react": ">= 16.8 < 17",
    "react-dom": ">=16.8 < 17"
  },
  "lint-staged": {
    "**/*.{ts,tsx}": [
      "prettier --trailing-comma es5 --single-quote --write",
      "git add"
    ]
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true,
    "semi": true,
    "print-width": 100
  }
}
