12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "react-native-permissions",
- "version": "1.0.1",
- "description": "Check user permissions in React Native",
- "author": "Yonah Forst <yonaforst@hotmail.com>",
- "homepage": "https://github.com/yonahforst/react-native-permissions",
- "main": "index",
- "license": "MIT",
- "keywords": [
- "react-native",
- "react-permissions",
- "permissions"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/yonahforst/react-native-permissions.git"
- },
- "scripts": {
- "precommit": "lint-staged",
- "prettier": "prettier --write '**/*.js'"
- },
- "lint-staged": {
- "**/*.js": [
- "prettier --write",
- "git add"
- ]
- },
- "devDependencies": {
- "husky": "^0.14.3",
- "lint-staged": "^5.0.0",
- "prettier": "^1.8.2"
- }
- }
|