{
  "name": "react-selectable-fast",
  "version": "3.4.0",
  "description": "Enable other React components to be selectable by drawing a box with your mouse/touch",
  "repository": {
    "type": "git",
    "url": "git://github.com/valerybugakov/react-selectable-fast.git"
  },
  "main": "lib/index.js",
  "scripts": {
    "clean": "rimraf ./lib ./dist",
    "watch": "webpack --watch",
    "build": "webpack",
    "transpile": "tsc",
    "build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
    "prepublishOnly": "yarn lint && yarn clean && yarn build:prod && yarn transpile",
    "prettier": "prettier --write src/**/*.{ts,tsx} example/src/**/*.{ts,tsx}",
    "lint:basic": "tsc --pretty --noEmit && eslint --fix --format codeframe",
    "lint": "yarn lint:basic '{example/,}src/**/*.{ts,tsx}'",
    "format": "yarn prettier && yarn lint",
    "test": "yarn lint",
    "release": "release-it",
    "watch:example": "webpack-dev-server --config ./example/webpack.config.example.js --content-base website",
    "build:example": "webpack --config ./example/webpack.config.example.js --mode production"
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "prettier --write",
      "yarn lint:basic"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "bugs": {
    "url": "https://github.com/valerybugakov/react-selectable-fast/issues"
  },
  "engines": {
    "node": ">8.0.0"
  },
  "keywords": [
    "selectable",
    "selection",
    "mouse",
    "fast",
    "scrollable",
    "performance",
    "drag",
    "touch",
    "react"
  ],
  "author": "Valery Bugakov <skymk1@gmail.com> (https://github.com/valerybugakov/)",
  "contributors": [
    "Valery Bugakov <skymk1@gmail.com> (https://github.com/valerybugakov/)"
  ],
  "license": "MIT",
  "files": [
    "lib",
    "dist"
  ],
  "homepage": "https://github.com/valerybugakov/react-selectable-fast#readme",
  "directories": {
    "example": "example"
  },
  "peerDependencies": {
    "react": ">=16.6.0",
    "react-dom": ">=16.6.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.0",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/preset-env": "^7.9.5",
    "@babel/preset-react": "^7.9.4",
    "@babel/preset-typescript": "^7.9.0",
    "@types/react": "^16.9.6",
    "@types/react-dom": "^16.9.6",
    "@typescript-eslint/eslint-plugin": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "babel-loader": "^8.1.0",
    "cross-env": "^7.0.2",
    "eslint": "6.8.0",
    "eslint-config-airbnb": "18.1.0",
    "eslint-config-prettier": "^6.10.1",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-prettier": "^3.1.1",
    "eslint-plugin-react": "^7.19.0",
    "eslint-plugin-react-hooks": "^3.0.0",
    "husky": "^4.2.5",
    "lint-staged": "^10.1.3",
    "prettier": "^2.0.4",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "release-it": "^13.5.2",
    "rimraf": "^3.0.2",
    "typescript": "^3.8.3",
    "webpack": "^4.42.1",
    "webpack-bundle-analyzer": "^3.6.1",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.10.3"
  }
}
