{
  "name": "react-navigation-stack",
  "version": "1.5.3",
  "description": "Stack navigator component for React Navigation",
  "main": "lib/commonjs/index.js",
  "module": "lib/module/index.js",
  "react-native": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "sideEffects": false,
  "files": [
    "src",
    "lib"
  ],
  "scripts": {
    "test": "jest",
    "lint": "eslint --ext .js,.ts,.tsx .",
    "typescript": "tsc --noEmit",
    "prepare": "bob build",
    "release": "release-it",
    "example": "yarn --cwd example",
    "bootstrap": "yarn && yarn example"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "keywords": [
    "react-native-component",
    "react-component",
    "react-native",
    "ios",
    "android",
    "stack"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/react-navigation/react-navigation-stack.git"
  },
  "author": "",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/react-navigation/react-navigation-stack/issues"
  },
  "homepage": "https://github.com/react-navigation/react-navigation-stack#readme",
  "devDependencies": {
    "@babel/core": "^7.4.4",
    "@commitlint/config-conventional": "^7.5.0",
    "@react-native-community/bob": "^0.4.1",
    "@react-navigation/core": "^3.5.0",
    "@react-navigation/native": "^3.6.2",
    "@release-it/conventional-changelog": "^1.1.0",
    "@types/jest": "^24.0.12",
    "@types/react": "^16.8.14",
    "@types/react-native": "^0.57.51",
    "@types/react-test-renderer": "^16.8.1",
    "commitlint": "^7.5.2",
    "eslint": "^5.16.0",
    "eslint-config-satya164": "^2.4.1",
    "eslint-plugin-react-native-globals": "^0.1.0",
    "husky": "^2.2.0",
    "jest": "^24.7.1",
    "prettier": "^1.17.0",
    "react": "16.8.3",
    "react-dom": "16.8.6",
    "react-native": "~0.59.8",
    "react-native-gesture-handler": "^1.1.0",
    "react-native-screens": "^1.0.0-alpha.22",
    "react-test-renderer": "~16.8.0",
    "release-it": "^12.3.6",
    "scheduler": "^0.14.0",
    "typescript": "^3.4.5"
  },
  "peerDependencies": {
    "@react-navigation/core": "^3.5.0",
    "@react-navigation/native": "^3.6.2",
    "react": "*",
    "react-native": "*",
    "react-native-gesture-handler": "^1.0.0",
    "react-native-screens": "^1.0.0 || ^1.0.0-alpha"
  },
  "jest": {
    "preset": "react-native",
    "testEnvironment": "node",
    "setupFiles": [
      "<rootDir>/jest-setup.js"
    ],
    "coveragePathIgnorePatterns": [
      "jest-setup.js"
    ],
    "modulePathIgnorePatterns": [
      "<rootDir>/example/",
      "<rootDir>/lib/"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!(jest-)?react-native|react-clone-referenced-element|react-navigation-deprecated-tab-navigator|@react-navigation/core|@react-navigation/native)"
    ],
    "testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
    "transform": {
      "^.+\\.(js|ts|tsx)$": "babel-jest"
    }
  },
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn lint && yarn test",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "@react-native-community/bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      "typescript"
    ]
  },
  "dependencies": {
    "prop-types": "^15.7.2"
  }
}