No Description

package.json 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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": "7.0.3",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "ci": "CI=true && yarn lint && yarn test",
  15. "ci:setup": "./bin/detox-setup",
  16. "ci:ios": "CI=true && cd examples/WebTest && yarn detox-ios && cd -",
  17. "ci:android": "CI=true && cd examples/WebTest && yarn detox-android && cd -",
  18. "ci:publish": "yarn semantic-release",
  19. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  20. "build": "yarn tsc",
  21. "prepare": "yarn build",
  22. "test": "yarn jest"
  23. },
  24. "peerDependencies": {
  25. "react": "^16.0",
  26. "react-native": ">=0.60 <0.62"
  27. },
  28. "dependencies": {
  29. "escape-string-regexp": "1.0.5",
  30. "invariant": "2.2.4"
  31. },
  32. "devDependencies": {
  33. "@babel/core": "7.3.4",
  34. "@semantic-release/git": "7.0.5",
  35. "@types/escape-string-regexp": "1.0.0",
  36. "@types/invariant": "^2.2.29",
  37. "@types/jest": "24.0.11",
  38. "@types/react": "16.8.8",
  39. "@types/react-native": "0.57.40",
  40. "@typescript-eslint/eslint-plugin": "1.4.2",
  41. "@typescript-eslint/parser": "1.4.2",
  42. "babel-eslint": "10.0.1",
  43. "babel-jest": "^24.0.0",
  44. "eslint": "5.15.1",
  45. "eslint-config-airbnb": "17.1.0",
  46. "eslint-config-prettier": "4.1.0",
  47. "eslint-plugin-import": "2.16.0",
  48. "eslint-plugin-jsx-a11y": "6.2.1",
  49. "eslint-plugin-react": "7.12.4",
  50. "eslint-plugin-react-native": "3.6.0",
  51. "jest": "24.5.0",
  52. "metro-react-native-babel-preset": "0.53.1",
  53. "react": "16.8.3",
  54. "react-native": "0.60.5",
  55. "semantic-release": "15.10.3",
  56. "typescript": "3.3.3333"
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": "https://github.com/react-native-community/react-native-webview.git"
  61. },
  62. "files": [
  63. "android",
  64. "ios",
  65. "lib",
  66. "index.js",
  67. "index.d.ts",
  68. "react-native-webview.podspec"
  69. ]
  70. }