No Description

package.json 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "react-native-safe-area-context",
  3. "version": "0.1.0",
  4. "description": "A flexible way to handle safe area, also works on Android.",
  5. "main": "src/index.tsx",
  6. "files": [
  7. "/android",
  8. "!/android/build",
  9. "/ios",
  10. "/src",
  11. "/*.podspec"
  12. ],
  13. "author": "Janic Duplessis <janicduplessis@gmail.com>",
  14. "homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme",
  15. "license": "MIT",
  16. "scripts": {
  17. "start": "react-native start",
  18. "test": "yarn validate:eslint && yarn validate:typescript",
  19. "validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
  20. "validate:typescript": "tsc --project ./ --noEmit"
  21. },
  22. "keywords": [
  23. "react-native",
  24. "react native",
  25. "safe area",
  26. "view"
  27. ],
  28. "peerDependencies": {
  29. "react-native": ">=0.59"
  30. },
  31. "dependencies": {},
  32. "devDependencies": {
  33. "@react-native-community/eslint-config": "^0.0.5",
  34. "@types/react-native": "^0.60.5",
  35. "@typescript-eslint/eslint-plugin": "^1.7.0",
  36. "@typescript-eslint/parser": "^1.7.0",
  37. "eslint": "5.16.0",
  38. "eslint-config-prettier": "^4.2.0",
  39. "eslint-plugin-prettier": "3.0.1",
  40. "metro-react-native-babel-preset": "^0.55.0",
  41. "prettier": "^1.18.2",
  42. "react": "^16.8.3",
  43. "react-native": "^0.60.5",
  44. "typescript": "^3.5.3"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/th3rdwave/react-native-safe-area-context.git"
  49. }
  50. }