UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

79 lines (78 loc) 2.07 kB
{ "name": "reanimated-bottom-sheet", "version": "1.0.0-alpha.22", "description": "Bottom sheet component", "main": "lib/commonjs/index.js", "module": "lib/module/index.js", "react-native": "lib/module/index.js", "types": "lib/typescript/index.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint --ext .js,.ts,.tsx .", "typescript": "tsc --noEmit", "release": "release-it", "prepare": "bob build" }, "keywords": [ "react-native", "bottom-sheet", "reanimated", "gesture", "handler" ], "files": [ "lib/", "src/", "reanimated-bottom-sheet.d.ts", "README.md" ], "author": "Michał Osadnik", "repository": { "type": "git", "url": "git+https://github.com/osdnk/reanimated-bottom-sheet.git" }, "license": "MIT", "peerDependencies": { "react": "*", "react-native": "*", "react-native-gesture-handler": "*", "react-native-reanimated": "*" }, "devDependencies": { "@commitlint/config-conventional": "^7.5.0", "@react-native-community/bob": "^0.9.3", "@release-it/conventional-changelog": "^1.1.0", "@types/react": "^16.8.14", "@types/react-native": "^0.57.50", "@typescript-eslint/eslint-plugin": "^1.7.0", "@typescript-eslint/parser": "^1.7.0", "babel-eslint": "^10.0.1", "commitlint": "^7.5.2", "conventional-changelog-cli": "^2.0.12", "eslint": "^5.16.0", "eslint-config-prettier": "^4.2.0", "eslint-plugin-prettier": "^3.0.1", "eslint-plugin-react": "^7.12.4", "husky": "^1.3.1", "prettier": "^1.17.0", "react-native-gesture-handler": "^1.6.1", "react-native-reanimated": "^1.0.1", "release-it": "^12.4.3", "typescript": "^3.4.5" }, "husky": { "hooks": { "pre-commit": "yarn lint && yarn typescript", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "@react-native-community/bob": { "source": "src", "output": "lib", "targets": [ "commonjs", "module", "typescript" ] } }