暫無描述

package.json 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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": "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.3.1",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "prepare": "yarn tsc",
  15. "test:js": "yarn jest",
  16. "test:ts": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  17. "ci:publish": "yarn semantic-release",
  18. "ci:test": "yarn ci:test:ts && yarn ci:test:js",
  19. "ci:test:js": "yarn test:js",
  20. "ci:test:ts": "yarn test:ts",
  21. "semantic-release": "semantic-release"
  22. },
  23. "peerDependencies": {
  24. "react": "^16.0",
  25. "react-native": ">=0.57 <0.59"
  26. },
  27. "dependencies": {
  28. "escape-string-regexp": "1.0.5",
  29. "invariant": "2.2.4"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.2.2",
  33. "@semantic-release/git": "7.0.5",
  34. "@types/escape-string-regexp": "^1.0.0",
  35. "@types/invariant": "^2.2.29",
  36. "@types/react": "^16.6.3",
  37. "@types/react-native": "0.57.40",
  38. "@typescript-eslint/eslint-plugin": "1.4.2",
  39. "@typescript-eslint/parser": "1.4.2",
  40. "babel-eslint": "10.0.1",
  41. "babel-jest": "^24.0.0",
  42. "flow-bin": "^0.80.0",
  43. "eslint": "5.15.1",
  44. "eslint-config-airbnb": "17.1.0",
  45. "eslint-config-prettier": "4.1.0",
  46. "eslint-plugin-import": "2.16.0",
  47. "eslint-plugin-jsx-a11y": "6.2.1",
  48. "eslint-plugin-react": "7.12.4",
  49. "eslint-plugin-react-native": "3.6.0",
  50. "jest": "^24.0.0",
  51. "metro-react-native-babel-preset": "^0.51.1",
  52. "react": "16.6.3",
  53. "react-native": "^0.57.8",
  54. "semantic-release": "15.10.3",
  55. "typescript": "^3.3.3333"
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/react-native-community/react-native-webview.git"
  60. }
  61. }