Keine Beschreibung

package.json 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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": "9.2.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 example",
  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 && 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.9",
  32. "react-native": ">=0.60 <0.62",
  33. "react-native-windows": "^0.61.0-beta.58"
  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": "^3.2.0",
  43. "@react-native-community/cli-platform-android": "^3.0.0",
  44. "@react-native-community/cli-platform-ios": "^3.0.0",
  45. "@semantic-release/git": "7.0.16",
  46. "@types/invariant": "^2.2.30",
  47. "@types/jest": "24.0.18",
  48. "@types/react": "16.8.8",
  49. "@types/react-native": "0.60.11",
  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-react-native-babel-preset": "0.54.1",
  64. "react": "16.9.0",
  65. "react-native": "0.61.5",
  66. "react-native-macos": "0.60.0-microsoft.73",
  67. "react-native-windows": "^0.61.0-beta.58",
  68. "rnpm-plugin-windows": "^0.5.1-0",
  69. "semantic-release": "15.13.24",
  70. "typescript": "3.6.2"
  71. },
  72. "repository": {
  73. "type": "git",
  74. "url": "https://github.com/react-native-community/react-native-webview.git"
  75. },
  76. "files": [
  77. "android",
  78. "apple",
  79. "ios",
  80. "macos",
  81. "windows",
  82. "lib",
  83. "index.js",
  84. "index.d.ts",
  85. "react-native-webview.podspec"
  86. ]
  87. }