12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "react-native-permissions",
- "version": "2.0.0-alpha.1",
- "license": "MIT",
- "description": "Check and request user permissions in React Native.",
- "author": "Yonah Forst <yonaforst@hotmail.com>",
- "main": "index.js",
- "homepage": "https://github.com/yonahforst/react-native-permissions",
- "repository": {
- "type": "git",
- "url": "https://github.com/yonahforst/react-native-permissions.git"
- },
- "keywords": [
- "react-native",
- "react-permissions",
- "permissions"
- ],
- "scripts": {
- "precommit": "lint-staged",
- "format": "prettier --write '**/*.{js,json,md}'",
- "typecheck": "flow ."
- },
- "lint-staged": {
- "**/*.{js,json,md}": [
- "prettier --write",
- "git add"
- ]
- },
- "peerDependencies": {
- "react": ">=16.6.3",
- "react-native": ">=0.58.3"
- },
- "devDependencies": {
- "flow-bin": "0.86.0",
- "husky": "1.3.1",
- "lint-staged": "8.1.1",
- "prettier": "1.16.1"
- }
- }
|