react-native-navigation的迁移库

package.json 5.5KB

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