Nav apraksta

package.json 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "rn-docs": {
  22. "title": "Webview",
  23. "type": "Component"
  24. },
  25. "peerDependencies": {
  26. "react": "^16.0",
  27. "react-native": ">=0.60 <0.62"
  28. },
  29. "dependencies": {
  30. "escape-string-regexp": "1.0.5",
  31. "invariant": "2.2.4"
  32. },
  33. "devDependencies": {
  34. "@babel/core": "7.3.4",
  35. "@semantic-release/git": "7.0.5",
  36. "@types/escape-string-regexp": "1.0.0",
  37. "@types/invariant": "^2.2.29",
  38. "@types/jest": "24.0.11",
  39. "@types/react": "16.8.8",
  40. "@types/react-native": "0.57.40",
  41. "@typescript-eslint/eslint-plugin": "1.4.2",
  42. "@typescript-eslint/parser": "1.4.2",
  43. "babel-eslint": "10.0.1",
  44. "babel-jest": "^24.0.0",
  45. "eslint": "5.15.1",
  46. "eslint-config-airbnb": "17.1.0",
  47. "eslint-config-prettier": "4.1.0",
  48. "eslint-plugin-import": "2.16.0",
  49. "eslint-plugin-jsx-a11y": "6.2.1",
  50. "eslint-plugin-react": "7.12.4",
  51. "eslint-plugin-react-native": "3.6.0",
  52. "jest": "24.5.0",
  53. "metro-react-native-babel-preset": "0.53.1",
  54. "react": "16.8.3",
  55. "react-native": "0.60.5",
  56. "semantic-release": "15.10.3",
  57. "typescript": "3.3.3333"
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "https://github.com/react-native-community/react-native-webview.git"
  62. },
  63. "files": [
  64. "android",
  65. "ios",
  66. "lib",
  67. "index.js",
  68. "index.d.ts",
  69. "react-native-webview.podspec"
  70. ]
  71. }