UNPKG

@blump-tech/native-base-select

Version:

This module includes a customizable multi-select and a single select component for Native Base. It creates a list of items with the selected item in closed view.

153 lines (152 loc) 3.79 kB
{ "name": "@blump-tech/native-base-select", "version": "0.2.0", "description": "This module includes a customizable multi-select and a single select component for Native Base. It creates a list of items with the selected item in closed view.", "main": "lib\\commonjs\\index.js", "module": "lib\\module\\index.js", "types": "lib\\typescript\\src\\index.d.ts", "react-native": "src\\index.tsx", "source": "src/index", "files": [ "src", "lib", "!**/__tests__", "!**/__fixtures__", "!**/__mocks__", "android", "ios", "cpp", "native-base-select.podspec", "!lib/typescript/example", "!android/build", "!ios/build" ], "scripts": { "test": "jest", "typescript": "tsc --noEmit", "lint": "eslint \"**/*.{js,ts,tsx}\"", "prepare": "bob build", "release": "release-it", "example": "yarn --cwd example", "pods": "cd example && pod-install --quiet", "bootstrap": "yarn example && yarn && yarn pods" }, "keywords": [ "react-native", "ios", "android", "select", "multi-select", "react-native-paper", "native-base", "dropdown", "material" ], "repository": "https://github.com/Blump-Tech-Pvt-Ltd/native-base-select", "author": "Anurag Srivastava <srivastavaanurag79@gmail.com> (https://github.com/srivastavaanurag79)", "license": "MIT", "bugs": { "url": "https://github.com/Blump-Tech-Pvt-Ltd/native-base-select/issues" }, "homepage": "https://github.com/Blump-Tech-Pvt-Ltd/native-base-select#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/jest": "^26.0.0", "@types/react": "^16.9.19", "@types/react-native": "^0.66.11", "@types/react-native-vector-icons": "^6.4.10", "commitlint": "^11.0.0", "eslint": "^7.2.0", "eslint-config-prettier": "^7.0.0", "eslint-plugin-prettier": "^3.1.3", "husky": "^6.0.0", "jest": "^26.0.1", "pod-install": "^0.1.0", "prettier": "^2.0.5", "react": "16.13.1", "react-native": "0.63.4", "react-native-builder-bob": "^0.18.2", "release-it": "^14.2.2", "typescript": "^4.1.3" }, "peerDependencies": { "native-base": "*", "react": "*", "react-native": "*", "react-native-safe-area-context": "*", "react-native-svg": "*" }, "jest": { "preset": "react-native", "modulePathIgnorePatterns": [ "<rootDir>/example/node_modules", "<rootDir>/lib/" ] }, "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" ] } }