package.json 951B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "react-native-permissions",
  3. "version": "2.0.0-alpha.1",
  4. "license": "MIT",
  5. "description": "Check and request user permissions in React Native.",
  6. "author": "Yonah Forst <yonaforst@hotmail.com>",
  7. "main": "index.js",
  8. "homepage": "https://github.com/yonahforst/react-native-permissions",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/yonahforst/react-native-permissions.git"
  12. },
  13. "keywords": [
  14. "react-native",
  15. "react-permissions",
  16. "permissions"
  17. ],
  18. "scripts": {
  19. "precommit": "lint-staged",
  20. "format": "prettier --write '**/*.{js,json,md}'",
  21. "typecheck": "flow ."
  22. },
  23. "lint-staged": {
  24. "**/*.{js,json,md}": [
  25. "prettier --write",
  26. "git add"
  27. ]
  28. },
  29. "peerDependencies": {
  30. "react": ">=16.6.3",
  31. "react-native": ">=0.58.3"
  32. },
  33. "devDependencies": {
  34. "flow-bin": "0.86.0",
  35. "husky": "1.3.1",
  36. "lint-staged": "8.1.1",
  37. "prettier": "1.16.1"
  38. }
  39. }