Ingen beskrivning

package.json 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.1",
  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. "uuid": "^7.0.3"
  39. },
  40. "devDependencies": {
  41. "@babel/core": "7.4.5",
  42. "@babel/runtime": "7.4.5",
  43. "@react-native-community/cli": "^3.2.0",
  44. "@react-native-community/cli-platform-android": "^3.0.0",
  45. "@react-native-community/cli-platform-ios": "^3.0.0",
  46. "@semantic-release/git": "7.0.16",
  47. "@types/invariant": "^2.2.30",
  48. "@types/jest": "24.0.18",
  49. "@types/react": "16.8.8",
  50. "@types/react-native": "0.60.11",
  51. "@types/uuid": "^7.0.2",
  52. "@typescript-eslint/eslint-plugin": "2.1.0",
  53. "@typescript-eslint/parser": "2.1.0",
  54. "babel-eslint": "10.0.3",
  55. "babel-jest": "24.8.0",
  56. "babel-plugin-module-resolver": "3.1.3",
  57. "eslint": "6.3.0",
  58. "eslint-config-airbnb": "18.0.1",
  59. "eslint-config-prettier": "6.2.0",
  60. "eslint-plugin-import": "2.18.2",
  61. "eslint-plugin-jsx-a11y": "6.2.3",
  62. "eslint-plugin-react": "7.14.3",
  63. "eslint-plugin-react-native": "3.7.0",
  64. "jest": "24.9.0",
  65. "metro-react-native-babel-preset": "0.54.1",
  66. "react": "16.9.0",
  67. "react-native": "0.61.5",
  68. "react-native-macos": "0.60.0-microsoft.73",
  69. "react-native-windows": "^0.61.0-beta.58",
  70. "rnpm-plugin-windows": "^0.5.1-0",
  71. "semantic-release": "15.13.24",
  72. "typescript": "3.6.2"
  73. },
  74. "repository": {
  75. "type": "git",
  76. "url": "https://github.com/react-native-community/react-native-webview.git"
  77. },
  78. "files": [
  79. "android",
  80. "ios",
  81. "macos",
  82. "windows",
  83. "lib",
  84. "index.js",
  85. "index.d.ts",
  86. "react-native-webview.podspec"
  87. ]
  88. }