react-native-navigation的迁移库

package.json 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. {
  2. "name": "react-native-navigation",
  3. "version": "3.1.1",
  4. "description": "React Native Navigation - truly native navigation for iOS and Android",
  5. "license": "MIT",
  6. "nativePackage": true,
  7. "publishConfig": {
  8. "registry": "https://registry.npmjs.org/"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/wix/react-native-navigation/issues"
  12. },
  13. "homepage": "https://github.com/wix/react-native-navigation",
  14. "readme": "https://github.com/wix/react-native-navigation#readme",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/wix/react-native-navigation.git"
  18. },
  19. "main": "lib/dist/index.js",
  20. "typings": "lib/dist/index.d.ts",
  21. "scripts": {
  22. "build": "rm -rf ./lib/dist && tsc",
  23. "xcode": "open playground/ios/playground.xcodeproj",
  24. "install-android": "node ./scripts/install-android",
  25. "uninstall-android": "cd playground/android && ./gradlew uninstallAll",
  26. "clean": "node ./scripts/clean",
  27. "prestart": "npm run build",
  28. "start": "node ./scripts/start",
  29. "pretest-js": "npm run build",
  30. "test-js": "node ./scripts/test-js",
  31. "test-unit-ios": "node ./scripts/test-unit --ios",
  32. "test-unit-android": "node ./scripts/test-unit --android",
  33. "pretest-e2e-android": "npm run build",
  34. "test-e2e-android": "node ./scripts/test-e2e --android",
  35. "test-e2e-android-locked": "node ./scripts/test-e2e-android-locked",
  36. "pretest-e2e-ios": "npm run build",
  37. "test-e2e-ios": "node ./scripts/test-e2e --ios",
  38. "test-e2e-ios-multi": "npm run test-e2e-ios -- --multi",
  39. "test-all": "node ./scripts/test-all",
  40. "prerelease": "npm run build",
  41. "release": "node ./scripts/release",
  42. "local-docs": "node ./scripts/local-docs",
  43. "gen-docs": "ts-node ./scripts/gen-docs/Main"
  44. },
  45. "peerDependencies": {
  46. "react": "*",
  47. "react-native": "*"
  48. },
  49. "dependencies": {
  50. "hoist-non-react-statics": "3.x.x",
  51. "lodash": "4.17.x",
  52. "prop-types": "15.x.x",
  53. "react-lifecycles-compat": "2.0.0",
  54. "tslib": "1.9.3"
  55. },
  56. "devDependencies": {
  57. "@babel/plugin-proposal-export-default-from": "7.2.0",
  58. "@babel/plugin-proposal-export-namespace-from": "7.2.0",
  59. "@types/hoist-non-react-statics": "^3.0.1",
  60. "@types/jest": "23.x.x",
  61. "@types/lodash": "4.x.x",
  62. "@types/react": "16.x.x",
  63. "@types/react-native": "0.57.7",
  64. "@types/react-test-renderer": "16.x.x",
  65. "detox": "12.x.x",
  66. "react-native-ui-lib": "3.24.2",
  67. "handlebars": "4.x.x",
  68. "jest": "24.0.0-alpha.6",
  69. "metro-react-native-babel-preset": "0.52.x",
  70. "react": "16.8.6",
  71. "react-native": "0.60.0",
  72. "react-native-typescript-transformer": "1.2.12",
  73. "react-native-view-overflow": "0.0.4",
  74. "react-native-keyboard-tracking-view": "5.x.x",
  75. "react-redux": "5.x.x",
  76. "react-test-renderer": "16.6.1",
  77. "redux": "3.x.x",
  78. "remx": "2.x.x",
  79. "semver": "5.x.x",
  80. "shell-utils": "1.x.x",
  81. "ts-mockito": "^2.3.1",
  82. "ts-node": "5.x.x",
  83. "tslint": "5.x.x",
  84. "typedoc": "0.x.x",
  85. "typescript": "3.2.2"
  86. },
  87. "jest": {
  88. "preset": "react-native",
  89. "transform": {
  90. "^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
  91. },
  92. "roots": [
  93. "<rootDir>/node_modules/",
  94. "<rootDir>/lib/dist/",
  95. "<rootDir>/integration/"
  96. ],
  97. "collectCoverageFrom": [
  98. "lib/dist/**/*.js",
  99. "integration/**/*.js",
  100. "!lib/dist/index.js",
  101. "!lib/dist/Navigation.js",
  102. "!lib/dist/adapters/**/*",
  103. "!lib/dist/interfaces/**/*",
  104. "!lib/dist/**/*.test.*",
  105. "!integration/**/*.test.*",
  106. "!integration/*.test.*"
  107. ],
  108. "resetMocks": true,
  109. "resetModules": true,
  110. "coverageReporters": [
  111. "json",
  112. "lcov",
  113. "text",
  114. "html"
  115. ]
  116. },
  117. "detox": {
  118. "test-runner": "jest",
  119. "specs": "",
  120. "configurations": {
  121. "ios.none": {
  122. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
  123. "type": "ios.none",
  124. "name": "iPhone X",
  125. "session": {
  126. "server": "ws://localhost:8099",
  127. "sessionId": "playground"
  128. }
  129. },
  130. "ios.sim.debug": {
  131. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
  132. "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Debug -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
  133. "type": "ios.simulator",
  134. "name": "iPhone X"
  135. },
  136. "ios.sim.release": {
  137. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
  138. "build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground_release -project playground/ios/playground.xcodeproj -sdk iphonesimulator -configuration Release -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=NO",
  139. "type": "ios.simulator",
  140. "name": "iPhone X"
  141. },
  142. "android.emu.debug": {
  143. "binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
  144. "build": "cd playground/android && ./gradlew app:assembleDebug app:assembleAndroidTest -DtestBuildType=debug",
  145. "type": "android.emulator",
  146. "name": "Pixel_2_API_26"
  147. },
  148. "android.emu.release": {
  149. "binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
  150. "build": "cd playground/android && ./gradlew app:assembleRelease app:assembleAndroidTest -DtestBuildType=release",
  151. "type": "android.emulator",
  152. "name": "Pixel_2_API_26"
  153. },
  154. "android.emu.debug.locked": {
  155. "binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
  156. "build": "cd playground/android && ./gradlew app:assembleDebug app:assembleAndroidTest -DtestBuildType=debug",
  157. "type": "android.emulator",
  158. "name": "Nexus_5X_API_23"
  159. },
  160. "android.emu.release.locked": {
  161. "binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
  162. "build": "cd playground/android && ./gradlew app:assembleRelease app:assembleAndroidTest -DtestBuildType=release",
  163. "type": "android.emulator",
  164. "name": "Nexus_5X_API_23"
  165. }
  166. }
  167. }
  168. }