react-native-webview.git

package.json 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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": "8.0.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-macos": "node node_modules/react-native-macos/local-cli/cli.js start --use-react-native-macos",
  16. "start:android": "react-native run-android --root example/",
  17. "start:ios": "react-native run-ios --project-path example/ios --scheme RNCWebViewExample",
  18. "build:e2e:ios": "detox build -c ios",
  19. "build:e2e:android": "detox build -c android",
  20. "ci": "CI=true && yarn lint && yarn test",
  21. "ci:publish": "yarn semantic-release",
  22. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  23. "build": "yarn tsc",
  24. "prepare": "yarn build",
  25. "test": "yarn jest"
  26. },
  27. "rn-docs": {
  28. "title": "Webview",
  29. "type": "Component"
  30. },
  31. "peerDependencies": {
  32. "react": "^16.8",
  33. "react-native": ">=0.60 <0.62"
  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. "@semantic-release/git": "7.0.16",
  43. "@types/invariant": "^2.2.30",
  44. "@types/jest": "24.0.18",
  45. "@types/react": "16.8.6",
  46. "@types/react-native": "0.60.11",
  47. "@typescript-eslint/eslint-plugin": "2.1.0",
  48. "@typescript-eslint/parser": "2.1.0",
  49. "babel-eslint": "10.0.3",
  50. "babel-jest": "24.8.0",
  51. "babel-plugin-module-resolver": "3.1.3",
  52. "eslint": "6.3.0",
  53. "eslint-config-airbnb": "18.0.1",
  54. "eslint-config-prettier": "6.2.0",
  55. "eslint-plugin-import": "2.18.2",
  56. "eslint-plugin-jsx-a11y": "6.2.3",
  57. "eslint-plugin-react": "7.14.3",
  58. "eslint-plugin-react-native": "3.7.0",
  59. "jest": "24.9.0",
  60. "metro-react-native-babel-preset": "0.54.1",
  61. "react": "16.6.3",
  62. "react-native": "0.60.5",
  63. "react-native-macos": "git://github.com/microsoft/react-native",
  64. "semantic-release": "15.13.24",
  65. "typescript": "3.6.2"
  66. },
  67. "repository": {
  68. "type": "git",
  69. "url": "https://github.com/react-native-community/react-native-webview.git"
  70. },
  71. "files": [
  72. "android",
  73. "ios",
  74. "lib",
  75. "index.js",
  76. "index.d.ts",
  77. "react-native-webview.podspec"
  78. ]
  79. }