暂无描述

package.json 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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": "8.0.6",
  12. "homepage": "https://github.com/react-native-community/react-native-webview#readme",
  13. "scripts": {
  14. "start": "node node_modules/react-native/local-cli/cli.js start",
  15. "start:android": "react-native run-android --root example/",
  16. "start:ios": "react-native run-ios --project-path example/ios --scheme example",
  17. "ci": "CI=true && yarn lint && yarn test",
  18. "ci:publish": "yarn semantic-release",
  19. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  20. "build": "yarn tsc",
  21. "prepare": "yarn build",
  22. "test": "yarn jest"
  23. },
  24. "rn-docs": {
  25. "title": "Webview",
  26. "type": "Component"
  27. },
  28. "peerDependencies": {
  29. "react": "^16.9",
  30. "react-native": ">=0.60 <0.62"
  31. },
  32. "dependencies": {
  33. "escape-string-regexp": "2.0.0",
  34. "invariant": "2.2.4"
  35. },
  36. "devDependencies": {
  37. "@babel/core": "7.4.5",
  38. "@babel/runtime": "7.4.5",
  39. "@semantic-release/git": "7.0.16",
  40. "@types/invariant": "^2.2.30",
  41. "@types/jest": "24.0.18",
  42. "@types/react": "16.8.8",
  43. "@types/react-native": "0.60.11",
  44. "@typescript-eslint/eslint-plugin": "2.1.0",
  45. "@typescript-eslint/parser": "2.1.0",
  46. "babel-eslint": "10.0.3",
  47. "babel-jest": "24.8.0",
  48. "babel-plugin-module-resolver": "3.1.3",
  49. "eslint": "6.3.0",
  50. "eslint-config-airbnb": "18.0.1",
  51. "eslint-config-prettier": "6.2.0",
  52. "eslint-plugin-import": "2.18.2",
  53. "eslint-plugin-jsx-a11y": "6.2.3",
  54. "eslint-plugin-react": "7.14.3",
  55. "eslint-plugin-react-native": "3.7.0",
  56. "jest": "24.9.0",
  57. "metro-react-native-babel-preset": "0.54.1",
  58. "react": "16.9.0",
  59. "react-native": "0.61.5",
  60. "semantic-release": "15.13.24",
  61. "typescript": "3.6.2"
  62. },
  63. "repository": {
  64. "type": "git",
  65. "url": "https://github.com/react-native-community/react-native-webview.git"
  66. },
  67. "files": [
  68. "android",
  69. "ios",
  70. "lib",
  71. "index.js",
  72. "index.d.ts",
  73. "react-native-webview.podspec"
  74. ]
  75. }