UNPKG

react-native-navigation-bottom-sheet

Version:

A performant customizable bottom sheet component made on top of wix react-native-navigation library.

154 lines (153 loc) 4.04 kB
{ "name": "react-native-navigation-bottom-sheet", "version": "1.4.0", "description": "A performant customizable bottom sheet component made on top of wix react-native-navigation library.", "main": "lib/commonjs/index", "module": "lib/module/index", "types": "lib/typescript/index.d.ts", "react-native": "src/index", "source": "src/index", "files": [ "src", "lib" ], "scripts": { "typescript": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\"", "build": "bob build && yarn copy-dts", "copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript", "release": "release-it", "watch-need-help": "echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances && echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events && echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches && watchman shutdown-server", "example": "yarn --cwd example", "bootstrap": "yarn install && yarn example" }, "keywords": [ "react-native", "ios", "android", "react-native-navigation", "bottom-sheet", "bottomsheet", "modal", "sheet" ], "repository": "https://github.com/CursedWizard/react-native-navigation-bottom-sheet", "author": "CursedWizard <imaginary.loyalist@gmail.com> (https://github.com/CursedWizard)", "license": "MIT", "bugs": { "email": "imaginary.loyalist@gmail.com", "url": "https://github.com/CursedWizard/react-native-navigation-bottom-sheet/issues" }, "homepage": "https://github.com/CursedWizard/react-native-navigation-bottom-sheet#readme", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@commitlint/config-conventional": "^11.0.0", "@react-native-community/eslint-config": "^2.0.0", "@release-it/conventional-changelog": "^2.0.0", "@types/react": "^16.9.19", "@types/react-native": "0.63.37", "commitlint": "^11.0.0", "copyfiles": "^2.4.1", "eslint": "^7.2.0", "eslint-config-prettier": "^7.0.0", "eslint-plugin-prettier": "^3.1.3", "husky": "^4.2.5", "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "16.13.1", "react-native": "0.63.4", "react-native-builder-bob": "^0.18.0", "react-native-gesture-handler": "^1.10.3", "react-native-reanimated": "^2.2.1", "release-it": "^14.2.2", "typescript": "^4.1.3" }, "peerDependencies": { "react": "*", "react-native": "*", "react-native-gesture-handler": "*", "react-native-navigation": ">=6.5.0", "react-native-reanimated": "*" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "husky": { "hooks": {} }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release-it": { "git": { "commitMessage": "chore: release ${version}", "tagName": "v${version}" }, "npm": { "publish": true }, "github": { "release": true }, "plugins": { "@release-it/conventional-changelog": { "preset": "angular" } } }, "eslintConfig": { "root": true, "extends": [ "@react-native-community", "prettier" ], "rules": { "prettier/prettier": [ "error", { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false } ] } }, "eslintIgnore": [ "node_modules/", "lib/" ], "prettier": { "quoteProps": "consistent", "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false }, "react-native-builder-bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", [ "typescript", { "project": "tsconfig.build.json" } ] ] }, "dependencies": { "react-native-navigation": "^7.23.1-hotfix.1" } }