react-native-webview.git

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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": "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": "8.0.2",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "start": "node node_modules/react-native/local-cli/cli.js start",
  15. "ci": "CI=true && yarn lint && yarn test",
  16. "ci:publish": "yarn semantic-release",
  17. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  18. "build": "yarn tsc",
  19. "prepare": "yarn build",
  20. "test": "yarn jest"
  21. },
  22. "rn-docs": {
  23. "title": "Webview",
  24. "type": "Component"
  25. },
  26. "peerDependencies": {
  27. "react": "^16.8",
  28. "react-native": ">=0.60 <0.62"
  29. },
  30. "dependencies": {
  31. "escape-string-regexp": "2.0.0",
  32. "invariant": "2.2.4"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "7.4.5",
  36. "@babel/runtime": "7.4.5",
  37. "@semantic-release/git": "7.0.16",
  38. "@types/invariant": "^2.2.30",
  39. "@types/jest": "24.0.18",
  40. "@types/react": "16.8.6",
  41. "@types/react-native": "0.60.11",
  42. "@typescript-eslint/eslint-plugin": "2.1.0",
  43. "@typescript-eslint/parser": "2.1.0",
  44. "babel-eslint": "10.0.3",
  45. "babel-jest": "24.8.0",
  46. "babel-plugin-module-resolver": "3.1.3",
  47. "eslint": "6.3.0",
  48. "eslint-config-airbnb": "18.0.1",
  49. "eslint-config-prettier": "6.2.0",
  50. "eslint-plugin-import": "2.18.2",
  51. "eslint-plugin-jsx-a11y": "6.2.3",
  52. "eslint-plugin-react": "7.14.3",
  53. "eslint-plugin-react-native": "3.7.0",
  54. "jest": "24.9.0",
  55. "metro-react-native-babel-preset": "0.54.1",
  56. "react": "16.6.3",
  57. "react-native": "git://github.com/microsoft/react-native",
  58. "semantic-release": "15.13.24",
  59. "typescript": "3.6.2"
  60. },
  61. "repository": {
  62. "type": "git",
  63. "url": "https://github.com/react-native-community/react-native-webview.git"
  64. },
  65. "files": [
  66. "android",
  67. "ios",
  68. "lib",
  69. "index.js",
  70. "index.d.ts",
  71. "react-native-webview.podspec"
  72. ]
  73. }