暫無描述

package.json 1.9KB

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