{
  "name": "@matt-block/react-native-in-app-browser",
  "version": "3.2.2",
  "description": "React Native in-app browser",
  "keywords": [
    "in-app",
    "browser",
    "react-native",
    "custom-tabs",
    "tabs",
    "chrome",
    "chrome-custom-tabs",
    "safari-view-controller",
    "SFSafariViewController"
  ],
  "main": "lib/index.js",
  "types": "types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/matei-radu/react-native-in-app-browser.git"
  },
  "bugs": "https://github.com/matei-radu/react-native-in-app-browser/issues",
  "homepage": "https://github.com/matei-radu/react-native-in-app-browser#readme",
  "author": "Matei Bogdan Radu <opensource@mateiradu.dev>",
  "license": "MIT",
  "private": false,
  "files": [
    "android",
    "!android/build",
    "ios",
    "lib",
    "types"
  ],
  "scripts": {
    "build": "run-s build:*",
    "build:clean": "rimraf lib types",
    "build:compile": "tsc",
    "build:flow-types": "ts-node -P scripts/tsconfig.json scripts/move-flow-types.ts",
    "prepack": "run-s build",
    "prepare": "install-self-peers -- --ignore-scripts",
    "test": "jest --config jestconfig.json",
    "validate:android": "cd android && ./gradlew spotlessCheck",
    "validate:android:fix": "cd android && ./gradlew spotlessApply",
    "validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
    "validate:typescript": "tsc --noEmit"
  },
  "dependencies": {
    "@ctrl/tinycolor": "^3.1.0"
  },
  "devDependencies": {
    "@react-native-community/eslint-config": "^1.1.0",
    "@team-griffin/install-self-peers": "^1.1.1",
    "@types/jest": "^25.2.1",
    "@types/react": "^16.8.25",
    "@types/react-native": "^0.60.25",
    "@typescript-eslint/eslint-plugin": "^2.31.0",
    "@typescript-eslint/parser": "^2.31.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^4.2.5",
    "jest": "^25.5.4",
    "lint-staged": "^10.2.2",
    "npm-run-all": "^4.1.3",
    "prettier": "^2.0.5",
    "rimraf": "^3.0.0",
    "ts-jest": "^25.5.0",
    "ts-node": "^8.5.4",
    "typescript": "^3.8.3"
  },
  "peerDependencies": {
    "react": "^16.8.6",
    "react-native": ">= 0.60.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "yarn eslint --fix"
    ]
  }
}
