react-native-navigation的迁移库

package.json 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. "pretest-e2e-ios": "npm run build",
  42. "test-e2e-ios": "node ./scripts/test.e2e.ios.js",
  43. "test-all": "node ./scripts/test.all.js",
  44. "release": "node ./scripts/release.js"
  45. },
  46. "peerDependencies": {
  47. "react": "*",
  48. "react-native": "*"
  49. },
  50. "dependencies": {
  51. "lodash": "4.x.x",
  52. "prop-types": "15.x.x",
  53. "tslib": "1.x.x",
  54. "@types/react": "16.x.x",
  55. "@types/react-native": "0.49.x",
  56. "@types/lodash": "4.x.x",
  57. "@types/prop-types": "15.x.x",
  58. "@types/react-test-renderer": "16.x.x",
  59. "@types/jest": "22.x.x"
  60. },
  61. "devDependencies": {
  62. "detox": "7.x.x",
  63. "jest": "22.x.x",
  64. "mocha": "4.x.x",
  65. "react": "16.0.0-beta.5",
  66. "react-native": "0.49.x",
  67. "react-redux": "5.x.x",
  68. "react-test-renderer": "16.0.0-alpha.12",
  69. "redux": "3.x.x",
  70. "remx": "2.x.x",
  71. "semver": "5.x.x",
  72. "shell-utils": "1.x.x",
  73. "tslint": "5.x.x",
  74. "typescript": "2.x.x"
  75. },
  76. "babel": {
  77. "env": {
  78. "test": {
  79. "presets": [
  80. "react-native"
  81. ]
  82. }
  83. }
  84. },
  85. "jest": {
  86. "preset": "react-native",
  87. "roots": [
  88. "<rootDir>/node_modules/",
  89. "<rootDir>/lib/dist/",
  90. "<rootDir>/integration/"
  91. ],
  92. "collectCoverageFrom": [
  93. "lib/dist/**/*.js",
  94. "integration/**/*.js",
  95. "!lib/dist/index.js",
  96. "!lib/dist/Navigation.js",
  97. "!lib/dist/adapters/**/*"
  98. ],
  99. "resetMocks": true,
  100. "resetModules": true,
  101. "coverageThreshold": {
  102. "global": {
  103. "branches": 100,
  104. "functions": 100,
  105. "lines": 100,
  106. "statements": 100
  107. }
  108. }
  109. },
  110. "detox": {
  111. "test-runner": "mocha",
  112. "specs": "e2e",
  113. "runner-config": "e2e/mocha.opts",
  114. "configurations": {
  115. "ios.sim.debug": {
  116. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
  117. "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",
  118. "type": "ios.simulator",
  119. "name": "iPhone SE"
  120. },
  121. "ios.sim.release": {
  122. "binaryPath": "playground/ios/DerivedData/playground/Build/Products/Release-iphonesimulator/playground.app",
  123. "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",
  124. "type": "ios.simulator",
  125. "name": "iPhone SE"
  126. }
  127. }
  128. }
  129. }