Sin descripción

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