react-native-webview.git

package.json 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "react-native-webview",
  3. "description": "React Native WebView component for iOS, Android, and Windows 10 (coming soon)",
  4. "main": "lib/index.js",
  5. "types": "lib/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": "2.13.0",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "ci:publish": "yarn semantic-release",
  15. "ci:test": "yarn ci:test:tsc",
  16. "ci:test:tsc": "yarn tsc --noEmit -p tsconfig.json",
  17. "semantic-release": "semantic-release"
  18. },
  19. "peerDependencies": {
  20. "react": "^16.0",
  21. "react-native": "^0.57"
  22. },
  23. "dependencies": {
  24. "escape-string-regexp": "^1.0.5",
  25. "invariant": "^2.2.4"
  26. },
  27. "devDependencies": {
  28. "@semantic-release/git": "7.0.5",
  29. "@types/invariant": "^2.2.29",
  30. "@types/react-native": "^0.57.6",
  31. "eslint": "5.9.0",
  32. "eslint-config-airbnb": "17.1.0",
  33. "eslint-config-prettier": "3.3.0",
  34. "eslint-plugin-import": "2.14.0",
  35. "eslint-plugin-jsx-a11y": "6.1.2",
  36. "eslint-plugin-react": "7.11.1",
  37. "eslint-plugin-react-native": "3.5.0",
  38. "eslint-plugin-typescript": "0.13.0",
  39. "prettier-eslint-cli": "4.7.1",
  40. "semantic-release": "15.10.3",
  41. "typescript": "3.1.6",
  42. "typescript-eslint-parser": "21.0.1"
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "https://github.com/react-native-community/react-native-webview.git"
  47. }
  48. }