UNPKG

react-native-tab-view

Version:
100 lines (99 loc) 2.66 kB
{ "name": "react-native-tab-view", "version": "2.6.2", "description": "Tab view component for React Native", "main": "lib/commonjs/index.js", "react-native": "lib/module/index.js", "module": "lib/module/index.js", "types": "lib/typescript/src/index.d.ts", "files": [ "src", "lib" ], "scripts": { "test": "jest", "typescript": "tsc --noEmit", "lint": "eslint --ext .js,.ts,.tsx .", "release": "release-it", "example": "yarn --cwd example", "bootstrap": "yarn example && yarn", "prepare": "bob build" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "keywords": [ "react-native-component", "react-component", "react-native", "ios", "android", "tab", "swipe", "scrollable", "coverflow" ], "repository": { "type": "git", "url": "git+https://github.com/react-native-community/react-native-tab-view.git" }, "author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)", "license": "MIT", "bugs": { "url": "https://github.com/react-native-community/react-native-tab-view/issues" }, "homepage": "https://github.com/react-native-community/react-native-tab-view#readme", "devDependencies": { "@commitlint/config-conventional": "^8.0.0", "@expo/vector-icons": "^10.0.2", "@react-native-community/bob": "^0.4.1", "@release-it/conventional-changelog": "^1.1.0", "@types/expo": "^32.0.13", "@types/react": "^16.8.20", "@types/react-native": "^0.57.63", "babel-jest": "^24.8.0", "babel-preset-react-native": "^4.0.0", "commitlint": "^8.0.0", "eslint": "^5.16.0", "eslint-config-satya164": "^2.4.1", "eslint-plugin-react-native-globals": "^0.1.2", "husky": "^2.4.1", "jest": "^24.8.0", "prettier": "^1.18.2", "react": "16.8.3", "react-dom": "16.8.3", "react-native": "~0.59.8", "react-native-gesture-handler": "^1.3.0", "react-native-reanimated": "^1.0.1", "release-it": "^12.3.0", "typescript": "^3.5.2" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-gesture-handler": "*", "react-native-reanimated": "*" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "yarn lint && yarn typescript" } }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "@react-native-community/bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", "typescript" ] } }