{
  "name": "@vseslav/react-native-horizontal-picker",
  "version": "0.1.1",
  "description": "Horizontally scrolling picker component for React Native",
  "react-native": "src/index.tsx",
  "types": "lib/typescript/index.d.ts",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "files": [
    "/src",
    "/lib"
  ],
  "author": "Vseslav Dorofeev",
  "homepage": "https://github.com/vdor/react-native-horizontal-picker",
  "license": "MIT",
  "scripts": {
    "test": "yarn validate:typescript",
    "validate:typescript": "tsc --project ./ --noEmit",
    "prepare": "bob build"
  },
  "keywords": [
    "react-native",
    "react-native-hoirzontal-picker",
    "picker",
    "horizontal"
  ],
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.4.5",
    "@babel/runtime": "^7.4.5",
    "@react-native-community/bob": "^0.16.2",
    "@types/jest": "^24.0.15",
    "@types/react": "^16.8.22",
    "@types/react-native": "^0.57.63",
    "babel-jest": "^24.8.0",
    "husky": "^2.4.1",
    "lint-staged": "^8.2.1",
    "metro-react-native-babel-preset": "^0.54.1",
    "prettier": "^1.18.2",
    "react": "16.8.6",
    "react-native": "0.60.0-rc.2",
    "ts-jest": "^24.0.2",
    "typescript": "3.5.2"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/vdor/react-native-horizontal-picker.git"
  },
  "@react-native-community/bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "flow": true
        }
      ],
      "module",
      "typescript"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "yarn test"
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "git add"
    ],
    "*.java": [
      "cd android && ./graldew spotlessApply",
      "git add"
    ]
  }
}