Aucune description

package.json 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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:publish": "yarn semantic-release",
  16. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  17. "build": "yarn tsc",
  18. "prepare": "yarn build",
  19. "test": "yarn jest"
  20. },
  21. "peerDependencies": {
  22. "react": "^16.0",
  23. "react-native": ">=0.60 <0.62"
  24. },
  25. "dependencies": {
  26. "escape-string-regexp": "2.0.0",
  27. "invariant": "2.2.4"
  28. },
  29. "devDependencies": {
  30. "@babel/core": "7.5.5",
  31. "@semantic-release/git": "7.0.16",
  32. "@types/invariant": "^2.2.30",
  33. "@types/jest": "24.0.18",
  34. "@types/react": "16.8.8",
  35. "@types/react-native": "0.60.11",
  36. "@typescript-eslint/eslint-plugin": "2.1.0",
  37. "@typescript-eslint/parser": "2.1.0",
  38. "babel-eslint": "10.0.3",
  39. "babel-jest": "^24.9.0",
  40. "eslint": "6.3.0",
  41. "eslint-config-airbnb": "18.0.1",
  42. "eslint-config-prettier": "6.2.0",
  43. "eslint-plugin-import": "2.18.2",
  44. "eslint-plugin-jsx-a11y": "6.2.3",
  45. "eslint-plugin-react": "7.14.3",
  46. "eslint-plugin-react-native": "3.7.0",
  47. "jest": "24.9.0",
  48. "metro-react-native-babel-preset": "0.53.1",
  49. "react": "16.8.3",
  50. "react-native": "0.60.5",
  51. "semantic-release": "15.13.24",
  52. "typescript": "3.6.2"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "https://github.com/react-native-community/react-native-webview.git"
  57. },
  58. "files": [
  59. "android",
  60. "ios",
  61. "lib",
  62. "index.js",
  63. "index.d.ts",
  64. "react-native-webview.podspec"
  65. ]
  66. }