
{
  "name": "react-native-google-freesignin",
  "version": "1.0.0",
  "description": "Modern Google Sign-In library for React Native using Google Identity Services",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "android",
    "README.md"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "npm run build",
    "build": "tsc",
    "example": "yarn --cwd example",
    "bootstrap": "yarn example && yarn"
  },
  "keywords": [
    "react-native",
    "google",
    "signin",
    "authentication",
    "oauth",
    "google-identity-services",
    "modern",
    "android"
  ],
  "repository": "https://github.com/henriquemafra/react-native-google-freesignin",
  "author": "Henrique <henriquemafra89@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/henriquemafra/react-native-google-freesignin/issues"
  },
  "homepage": "https://github.com/henriquemafra/react-native-google-freesignin#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@types/react": "^18.0.0",
    "@types/react-native": "^0.72.0",
    "typescript": "^4.0.0",
    "jest": "^26.0.0",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.0.0",
    "eslint": "^8.0.0"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "react-native": "src/index"
}