react-native-webview.git

package.json 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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:types && yarn ci:test:lint",
  16. "ci:test:types": "yarn tsc",
  17. "ci:test:lint": "yarn eslint . --max-warnings=0 --ext .js,.ts,.tsx",
  18. "eslint-check": "eslint --print-config . | eslint-config-prettier-check",
  19. "semantic-release": "semantic-release"
  20. },
  21. "peerDependencies": {
  22. "react": "^16.0",
  23. "react-native": "^0.57"
  24. },
  25. "dependencies": {
  26. "escape-string-regexp": "^1.0.5",
  27. "invariant": "^2.2.4"
  28. },
  29. "devDependencies": {
  30. "@semantic-release/git": "7.0.5",
  31. "@types/invariant": "^2.2.29",
  32. "@types/react": "16.7.7",
  33. "@types/react-native": "^0.57.6",
  34. "eslint": "5.9.0",
  35. "eslint-config-airbnb-base": "13.1.0",
  36. "eslint-config-prettier": "3.3.0",
  37. "eslint-plugin-import": "2.14.0",
  38. "eslint-plugin-react": "7.11.1",
  39. "eslint-plugin-react-native": "3.5.0",
  40. "eslint-plugin-typescript": "0.14.0",
  41. "prettier-eslint-cli": "^4.7.1",
  42. "react": "16.6.1",
  43. "react-native": "0.57.5",
  44. "semantic-release": "15.10.3",
  45. "typescript": "3.1.6",
  46. "typescript-eslint-parser": "21.0.1"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/react-native-community/react-native-webview.git"
  51. }
  52. }