react-native-navigation的迁移库

package.json 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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/src/index.js",
  27. "scripts": {
  28. "build": ":",
  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. "start": "node ./scripts/start.js",
  34. "test-js": "node ./scripts/test-js.js",
  35. "test-unit-android": "node ./scripts/test.unit.android.js",
  36. "test-unit-ios": "node ./scripts/test.unit.ios.js",
  37. "test-e2e-android": "node ./scripts/test.e2e.android.js",
  38. "test-e2e-ios": "node ./scripts/test.e2e.ios.js",
  39. "test-all": "node ./scripts/test.all.js",
  40. "test-watch": "BABEL_ENV=test jest --coverage --watch",
  41. "release": "node ./scripts/release.js"
  42. },
  43. "peerDependencies": {
  44. "react-native": "*",
  45. "react": "*"
  46. },
  47. "dependencies": {
  48. "lodash": "4.x.x"
  49. },
  50. "devDependencies": {
  51. "react-native": "0.41.2",
  52. "react": "15.4.2",
  53. "react-test-renderer": "15.4.2",
  54. "babel-cli": "6.x.x",
  55. "babel-core": "6.x.x",
  56. "babel-polyfill": "6.x.x",
  57. "babel-eslint": "7.x.x",
  58. "babel-preset-react-native": "1.x.x",
  59. "babel-register": "6.x.x",
  60. "babel-jest": "18.x.x",
  61. "eslint": "3.x.x",
  62. "eslint-plugin-babel": "4.x.x",
  63. "eslint-plugin-react": "6.x.x",
  64. "eslint-plugin-react-native": "2.x.x",
  65. "jest": "18.x.x",
  66. "jest-cli": "18.x.x",
  67. "remx": "1.x.x",
  68. "semver": "5.x.x",
  69. "detox": "5.x.x",
  70. "mocha": "3.x.x",
  71. "shell-utils": "1.x.x"
  72. },
  73. "babel": {
  74. "env": {
  75. "test": {
  76. "presets": [
  77. "react-native"
  78. ],
  79. "retainLines": true
  80. }
  81. }
  82. },
  83. "jest": {
  84. "preset": "react-native",
  85. "testPathDirs": [
  86. "<rootDir>/node_modules/",
  87. "<rootDir>/lib/src/",
  88. "<rootDir>/integration/"
  89. ],
  90. "resetMocks": true,
  91. "resetModules": true,
  92. "coverageThreshold": {
  93. "global": {
  94. "branches": 100,
  95. "functions": 100,
  96. "lines": 100,
  97. "statements": 100
  98. }
  99. }
  100. }
  101. }