react-native-webview.git

package.json 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@bilingo.com/react-native-webview",
  3. "description": "base on react-native-webview:8.1.2 React Native WebView component for iOS, Android, and macOS",
  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": "1.0.0",
  12. "homepage": "https://git.links123.net/npm/react-native-webview",
  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. "start:macos": "node node_modules/react-native-macos/local-cli/cli.js start --use-react-native-macos",
  18. "ci": "CI=true && yarn lint && yarn test",
  19. "ci:publish": "yarn semantic-release",
  20. "lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
  21. "build": "yarn tsc",
  22. "prepare": "yarn build",
  23. "test": "yarn jest"
  24. },
  25. "rn-docs": {
  26. "title": "Webview",
  27. "type": "Component"
  28. },
  29. "peerDependencies": {
  30. "react": "^16.9",
  31. "react-native": ">=0.60 <0.62"
  32. },
  33. "dependencies": {
  34. "escape-string-regexp": "2.0.0",
  35. "invariant": "2.2.4"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "7.4.5",
  39. "@babel/runtime": "7.4.5",
  40. "@react-native-community/cli-platform-ios": "^3.0.0",
  41. "@react-native-community/cli-platform-android": "^3.0.0",
  42. "@semantic-release/git": "7.0.16",
  43. "@types/invariant": "^2.2.30",
  44. "@types/jest": "24.0.18",
  45. "@types/react": "16.8.8",
  46. "@types/react-native": "0.60.11",
  47. "@typescript-eslint/eslint-plugin": "2.1.0",
  48. "@typescript-eslint/parser": "2.1.0",
  49. "babel-eslint": "10.0.3",
  50. "babel-jest": "24.8.0",
  51. "babel-plugin-module-resolver": "3.1.3",
  52. "eslint": "6.3.0",
  53. "eslint-config-airbnb": "18.0.1",
  54. "eslint-config-prettier": "6.2.0",
  55. "eslint-plugin-import": "2.18.2",
  56. "eslint-plugin-jsx-a11y": "6.2.3",
  57. "eslint-plugin-react": "7.14.3",
  58. "eslint-plugin-react-native": "3.7.0",
  59. "jest": "24.9.0",
  60. "metro-react-native-babel-preset": "0.54.1",
  61. "react": "16.9.0",
  62. "react-native": "0.61.5",
  63. "react-native-macos": "0.60.0-microsoft.49",
  64. "semantic-release": "15.13.24",
  65. "typescript": "3.6.2"
  66. },
  67. "repository": {
  68. "type": "git",
  69. "url": "https://git.links123.net/npm/react-native-webview.git"
  70. },
  71. "files": [
  72. "android",
  73. "ios",
  74. "macos",
  75. "lib",
  76. "index.js",
  77. "index.d.ts",
  78. "react-native-webview.podspec"
  79. ]
  80. }