No Description

package.json 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "react-native-webview",
  3. "description": "React Native WebView component for iOS, Android, macOS, and Windows",
  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": "10.9.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",
  16. "start:ios": "react-native run-ios",
  17. "start:macos": "node node_modules/react-native-macos/local-cli/cli.js start --use-react-native-macos",
  18. "start:windows": "react-native start --use-react-native-windows",
  19. "ci": "CI=true && yarn lint",
  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. "appium": "appium",
  25. "test:windows": "yarn jest --setupFiles=./jest-setups/jest.setup.windows.js"
  26. },
  27. "rn-docs": {
  28. "title": "Webview",
  29. "type": "Component"
  30. },
  31. "peerDependencies": {
  32. "react-native": ">=0.60 <0.64"
  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. "@react-native-community/cli": "^4.8.0",
  42. "@react-native-community/cli-platform-android": "^4.8.0",
  43. "@react-native-community/cli-platform-ios": "^4.8.0",
  44. "@semantic-release/git": "7.0.16",
  45. "@types/invariant": "^2.2.30",
  46. "@types/jest": "24.0.18",
  47. "@types/react": "16.9.34",
  48. "@types/react-native": "0.62.5",
  49. "@types/selenium-webdriver": "4.0.9",
  50. "@typescript-eslint/eslint-plugin": "2.1.0",
  51. "@typescript-eslint/parser": "2.1.0",
  52. "babel-eslint": "10.0.3",
  53. "babel-jest": "24.8.0",
  54. "babel-plugin-module-resolver": "3.1.3",
  55. "eslint": "6.3.0",
  56. "eslint-config-airbnb": "18.0.1",
  57. "eslint-config-prettier": "6.2.0",
  58. "eslint-plugin-import": "2.18.2",
  59. "eslint-plugin-jsx-a11y": "6.2.3",
  60. "eslint-plugin-react": "7.14.3",
  61. "eslint-plugin-react-native": "3.7.0",
  62. "jest": "24.9.0",
  63. "metro": "0.56.4",
  64. "metro-react-native-babel-preset": "^0.59.0",
  65. "react": "16.11.0",
  66. "react-native": "0.62.2",
  67. "react-native-macos": "0.60.0-microsoft.73",
  68. "react-native-windows": "^0.62.0-0",
  69. "semantic-release": "15.13.24",
  70. "typescript": "3.8.3",
  71. "appium": "1.17.0",
  72. "selenium-appium": "0.0.15",
  73. "selenium-webdriver": "4.0.0-alpha.7"
  74. },
  75. "repository": {
  76. "type": "git",
  77. "url": "https://github.com/react-native-community/react-native-webview.git"
  78. },
  79. "files": [
  80. "android",
  81. "apple",
  82. "ios",
  83. "macos",
  84. "windows",
  85. "lib",
  86. "index.js",
  87. "index.d.ts",
  88. "react-native-webview.podspec"
  89. ]
  90. }