설명 없음

package.json 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "react-native-webview",
  3. "description": "React Native WebView component for iOS, Android, and Windows 10 (coming soon)",
  4. "main": "index.js",
  5. "typings": "typings/index.d.ts",
  6. "author": "Jamon Holmgren <jamon@infinite.red>",
  7. "contributors": [
  8. "Thibault Malbranche <malbranche.thibault@gmail.com>"
  9. ],
  10. "license": "MIT",
  11. "version": "5.0.7",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "test:js": "jest",
  15. "test:ios:flow": "flow check",
  16. "test:android:flow": "flow check --flowconfig-name .flowconfig.android",
  17. "ci:publish": "yarn semantic-release",
  18. "ci:test": "yarn ci:test:flow && yarn ci:test:js",
  19. "ci:test:flow": "yarn test:ios:flow && yarn test:android:flow",
  20. "ci:test:js": "yarn test:js",
  21. "semantic-release": "semantic-release"
  22. },
  23. "peerDependencies": {
  24. "react": "^16.0",
  25. "react-native": ">=0.57 <0.59"
  26. },
  27. "dependencies": {
  28. "escape-string-regexp": "^1.0.5",
  29. "fbjs": "^0.8.17"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.2.2",
  33. "@semantic-release/git": "7.0.5",
  34. "@types/react": "^16.4.18",
  35. "@types/react-native": "^0.57.6",
  36. "babel-jest": "^24.0.0",
  37. "flow-bin": "^0.80.0",
  38. "jest": "^24.0.0",
  39. "metro-react-native-babel-preset": "^0.51.1",
  40. "react-native": ">=0.57 <0.59",
  41. "semantic-release": "15.10.3"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://github.com/react-native-community/react-native-webview.git"
  46. }
  47. }