{ "name": "react-navigation-stack", "version": "1.3.0", "description": "Stack navigator component for React Navigation", "main": "lib/commonjs/index.js", "module": "lib/module/index.js", "react-native": "src/index.js", "sideEffects": false, "files": [ "src", "lib" ], "scripts": { "test": "jest", "lint": "eslint .", "format": "eslint . --fix", "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.3", "@commitlint/config-conventional": "^7.5.0", "@expo/vector-icons": "^10.0.1", "@react-native-community/bob": "^0.3.4", "@react-navigation/core": "^3.3.1", "@react-navigation/native": "^3.4.1", "commitlint": "^7.5.2", "conventional-changelog-cli": "^2.0.12", "eslint": "^5.16.0", "eslint-config-satya164": "^2.4.1", "eslint-plugin-react-native-globals": "^0.1.0", "husky": "^1.3.1", "jest": "^24.7.1", "prettier": "^1.17.0", "react": "16.5.0", "react-dom": "16.5.0", "react-native": "~0.57.7", "react-native-gesture-handler": "^1.1.0", "react-native-screens": "^1.0.0-alpha.22", "react-test-renderer": "16.5.0", "release-it": "^10.4.2", "scheduler": "^0.14.0" }, "peerDependencies": { "@react-navigation/core": "^3.0.0", "@react-navigation/native": "^3.0.0", "react": "*", "react-native": "*", "react-native-gesture-handler": "^1.0.0", "react-native-screens": "^1.0.0 || ^1.0.0-alpha" }, "jest": { "preset": "react-native", "testRegex": "/__tests__/[^/]+-test\\.js$", "setupFiles": [ "/jest-setup.js" ], "coveragePathIgnorePatterns": [ "jest-setup.js" ], "modulePathIgnorePatterns": [ "/example/", "/lib/" ], "transformIgnorePatterns": [ "node_modules/(?!(jest-)?react-native|react-clone-referenced-element|react-navigation-deprecated-tab-navigator|@react-navigation/core|@react-navigation/native)" ] }, "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" ] } }