Keine Beschreibung

package.json 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.3.1",
  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. "invariant": "2.2.4"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.2.2",
  33. "@semantic-release/git": "7.0.5",
  34. "@types/escape-string-regexp": "^1.0.0",
  35. "@types/invariant": "^2.2.29",
  36. "@types/react": "^16.6.3",
  37. "@types/react-native": "0.57.40",
  38. "babel-jest": "^24.0.0",
  39. "flow-bin": "^0.80.0",
  40. "jest": "^24.0.0",
  41. "metro-react-native-babel-preset": "^0.51.1",
  42. "react": "16.6.3",
  43. "react-native": "^0.57.8",
  44. "semantic-release": "15.10.3",
  45. "typescript": "^3.3.3333"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": "https://github.com/react-native-community/react-native-webview.git"
  50. }
  51. }