react-native-navigation的迁移库

package.json 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. "scripts": {
  28. "build": "rm -rf ./lib/dist && tsc",
  29. "xcode": "open playground/ios/playground.xcodeproj",
  30. "install-android": "node ./scripts/install-android.js",
  31. "uninstall-android": "cd playground/android && ./gradlew uninstallAll",
  32. "clean": "node ./scripts/clean.js",
  33. "prestart": "npm run build",
  34. "start": "node ./scripts/start.js",
  35. "pretest-js": "npm run build",
  36. "test-js": "node ./scripts/test-js.js",
  37. "test-unit-android": "node ./scripts/test.unit.android.js",
  38. "test-unit-ios": "node ./scripts/test.unit.ios.js",
  39. "pretest-e2e-android": "npm run build",
  40. "test-e2e-android": "node ./scripts/test.e2e.android.js",
  41. "test-e2e-android-detox": "node ./scripts/test.e2e.android.detox.js",
  42. "pretest-e2e-ios": "npm run build",
  43. "test-e2e-ios": "node ./scripts/test.e2e.ios.js",
  44. "test-all": "node ./scripts/test.all.js",
  45. "prerelease": "npm run build",
  46. "release": "node ./scripts/release.js"
  47. },
  48. "peerDependencies": {
  49. "react": "*",
  50. "react-native": "*"
  51. },
  52. "dependencies": {
  53. "lodash": "4.x.x",
  54. "prop-types": "15.x.x",
  55. "tslib": "1.x.x",
  56. "@types/react": "16.x.x",
  57. "@types/react-native": "0.49.x",
  58. "@types/lodash": "4.x.x",
  59. "@types/prop-types": "15.x.x",
  60. "@types/react-test-renderer": "16.x.x",
  61. "@types/jest": "22.x.x"
  62. },
  63. "devDependencies": {
  64. "detox": "7.x.x",
  65. "jest": "22.x.x",
  66. "mocha": "4.x.x",
  67. "react": "16.0.0-beta.5",
  68. "react-native": "0.49.x",
  69. "react-redux": "5.x.x",
  70. "react-test-renderer": "16.0.0-alpha.12",
  71. "redux": "3.x.x",
  72. "remx": "2.x.x",
  73. "semver": "5.x.x",
  74. "shell-utils": "1.x.x",
  75. "tslint": "5.x.x",
  76. "typescript": "2.x.x"
  77. },
  78. "babel": {
  79. "env": {
  80. "test": {
  81. "presets": [
  82. "react-native"
  83. ]
  84. }
  85. }
  86. },
  87. "jest": {
  88. "preset": "react-native",
  89. "roots": [
  90. "<rootDir>/node_modules/",
  91. "<rootDir>/lib/dist/",
  92. "<rootDir>/integration/"
  93. ],
  94. "collectCoverageFrom": [
  95. "lib/dist/**/*.js",
  96. "integration/**/*.js",
  97. "!lib/dist/index.js",
  98. "!lib/dist/Navigation.js",
  99. "!lib/dist/adapters/**/*"
  100. ],
  101. "resetMocks": true,
  102. "resetModules": true,
  103. "coverageThreshold": {
  104. "global": {
  105. "branches": 100,
  106. "functions": 100,
  107. "lines": 100,
  108. "statements": 100
  109. }
  110. }
  111. },
  112. "detox": {
  113. "test-runner": "mocha",
  114. "specs": "e2e",
  115. "runner-config": "e2e/mocha.opts",
  116. "configurations": {
  117. "ios.sim.debug": {
  118. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
  119. "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",
  120. "type": "ios.simulator",
  121. "name": "iPhone SE"
  122. },
  123. "ios.sim.release": {
  124. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
  125. "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",
  126. "type": "ios.simulator",
  127. "name": "iPhone SE"
  128. },
  129. "android.emu.debug": {
  130. "binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
  131. "build": "cd playground/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ../..",
  132. "type": "android.emulator",
  133. "name": "Nexus_5X_API_26"
  134. },
  135. "android.emu.release": {
  136. "binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
  137. "build": "cd playground/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ../..",
  138. "type": "android.emulator",
  139. "name": "Nexus_5X_API_26"
  140. }
  141. }
  142. }
  143. }