package.json 1014B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "react-native-permissions",
  3. "version": "1.2.1",
  4. "description": "Check user permissions in React Native",
  5. "author": "Yonah Forst <yonaforst@hotmail.com>",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "homepage": "https://github.com/react-native-community/react-native-permissions#readme",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/react-native-community/react-native-permissions.git"
  12. },
  13. "keywords": [
  14. "react-native",
  15. "react native",
  16. "react-permissions",
  17. "permissions",
  18. "authorization"
  19. ],
  20. "scripts": {
  21. "precommit": "lint-staged",
  22. "typecheck": "flow .",
  23. "format": "prettier --write '**/*.{js,json,md,ts,tsx}'"
  24. },
  25. "lint-staged": {
  26. "**/*.{js,json,md,ts,tsx}": [
  27. "prettier --write",
  28. "git add"
  29. ]
  30. },
  31. "devDependencies": {
  32. "flow-bin": "0.98.0",
  33. "husky": "3.0.0",
  34. "lint-staged": "9.2.0",
  35. "prettier": "1.18.2"
  36. },
  37. "peerDependencies": {
  38. "@react-native-community/async-storage": "^1.5.1"
  39. }
  40. }