@snooper/rn-scroll-bottom-sheet
Version:
Cross platform scrollable bottom sheet with virtualization support, running at 60 FPS and fully implemented in JS land
140 lines (139 loc) • 3.44 kB
JSON
{
"name": "@snooper/rn-scroll-bottom-sheet",
"version": "0.7.0",
"private": false,
"description": "Cross platform scrollable bottom sheet with virtualization support, running at 60 FPS and fully implemented in JS land",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.tsx",
"files": [
"src",
"lib"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example"
},
"keywords": [
"react-native",
"react",
"ios",
"android",
"bottom-sheet",
"bottomsheet",
"cross-platform",
"60FPS"
],
"repository": "https://github.com/snooperapp/react-native-scroll-bottom-sheet",
"author": "Heisenberg <ivanov@univ3rse.com> (https://github.com/CallMeHeisenberg)",
"license": "MIT",
"bugs": {
"url": "https://github.com/snooperapp/react-native-scroll-bottom-sheet/issues"
},
"homepage": "https://github.com/snooperapp/react-native-scroll-bottom-sheet#readme",
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
},
"devDependencies": {
"@commitlint/config-conventional": "^9.1.1",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^1.1.4",
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"@types/react-native": "^0.63.2",
"commitlint": "^9.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^25.1.0",
"prettier": "^2.0.5",
"react": "^16.10.1",
"react-native": "^0.63.2",
"react-native-gesture-handler": "^1.7.0",
"react-native-reanimated": "^1.10.1",
"release-it": "^13.6.6",
"typescript": "^3.9.7"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typescript"
}
},
"eslintConfig": {
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"prettier/prettier": [
"error",
{
"arrowParens": "avoid",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"release-it": {
"git": {
"commitMessage": "chore: release %s",
"tagName": "v%s"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"dependencies": {
"utility-types": "^3.10.0"
}
}