No Description

package.json 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.5.0",
  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": "16.11.0",
  33. "react-native": ">=0.60 <0.63"
  34. },
  35. "dependencies": {
  36. "escape-string-regexp": "2.0.0",
  37. "invariant": "2.2.4"
  38. },
  39. "devDependencies": {
  40. "@babel/core": "7.4.5",
  41. "@babel/runtime": "7.4.5",
  42. "@react-native-community/cli": "^4.8.0",
  43. "@react-native-community/cli-platform-android": "^4.8.0",
  44. "@react-native-community/cli-platform-ios": "^4.8.0",
  45. "@semantic-release/git": "7.0.16",
  46. "@types/invariant": "^2.2.30",
  47. "@types/jest": "24.0.18",
  48. "@types/react": "16.9.34",
  49. "@types/react-native": "0.62.5",
  50. "@types/selenium-webdriver": "4.0.9",
  51. "@typescript-eslint/eslint-plugin": "2.1.0",
  52. "@typescript-eslint/parser": "2.1.0",
  53. "babel-eslint": "10.0.3",
  54. "babel-jest": "24.8.0",
  55. "babel-plugin-module-resolver": "3.1.3",
  56. "eslint": "6.3.0",
  57. "eslint-config-airbnb": "18.0.1",
  58. "eslint-config-prettier": "6.2.0",
  59. "eslint-plugin-import": "2.18.2",
  60. "eslint-plugin-jsx-a11y": "6.2.3",
  61. "eslint-plugin-react": "7.14.3",
  62. "eslint-plugin-react-native": "3.7.0",
  63. "jest": "24.9.0",
  64. "metro": "0.56.4",
  65. "metro-react-native-babel-preset": "^0.59.0",
  66. "react": "16.11.0",
  67. "react-native": "0.62.2",
  68. "react-native-macos": "0.60.0-microsoft.73",
  69. "react-native-windows": "^0.62.0-0",
  70. "semantic-release": "15.13.24",
  71. "typescript": "3.8.3",
  72. "appium": "1.17.0",
  73. "selenium-appium": "0.0.15",
  74. "selenium-webdriver": "4.0.0-alpha.7"
  75. },
  76. "repository": {
  77. "type": "git",
  78. "url": "https://github.com/react-native-community/react-native-webview.git"
  79. },
  80. "files": [
  81. "android",
  82. "apple",
  83. "ios",
  84. "macos",
  85. "windows",
  86. "lib",
  87. "index.js",
  88. "index.d.ts",
  89. "react-native-webview.podspec"
  90. ]
  91. }