暫無描述

package.json 1.8KB

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