react-native-webview.git

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