react-native-navigation的迁移库

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "react-native-navigation",
  3. "version": "1.1.406",
  4. "description": "React Native Navigation - truly native navigation for iOS and Android",
  5. "license": "MIT",
  6. "nativePackage": true,
  7. "author": "Tal Kol <talkol@gmail.com>",
  8. "publishConfig": {
  9. "registry": "https://registry.npmjs.org/"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/wix/react-native-navigation/issues"
  13. },
  14. "homepage": "https://github.com/wix/react-native-navigation",
  15. "readme": "https://github.com/wix/react-native-navigation#readme",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/wix/react-native-navigation.git"
  19. },
  20. "main": "src/index.js",
  21. "scripts": {
  22. "build": ":",
  23. "clean": ":",
  24. "test-js": "npm run test",
  25. "test-unit-ios": ":",
  26. "test-unit-android": ":",
  27. "test-e2e-ios": ":",
  28. "test-e2e-android": ":",
  29. "lint": "eslint src test",
  30. "test:js": "jest --coverage",
  31. "test:android": "cd android && ./gradlew clean testDebugUnitTest",
  32. "test:ios": ":",
  33. "pretest": "npm run lint",
  34. "test": "npm run test:js && npm run test:android && npm run test:ios",
  35. "test:watch": "jest --coverage --watch",
  36. "release": "node ./scripts/release.js"
  37. },
  38. "peerDependencies": {
  39. "react": "*",
  40. "react-native": "*"
  41. },
  42. "dependencies": {
  43. "lodash": "4.x.x"
  44. },
  45. "devDependencies": {
  46. "babel-cli": "6.x.x",
  47. "babel-core": "6.x.x",
  48. "babel-eslint": "7.x.x",
  49. "babel-jest": "18.x.x",
  50. "babel-polyfill": "6.x.x",
  51. "babel-preset-react-native": "1.x.x",
  52. "babel-register": "6.x.x",
  53. "eslint": "3.x.x",
  54. "eslint-plugin-babel": "3.x.x",
  55. "eslint-plugin-react": "6.x.x",
  56. "eslint-plugin-react-native": "2.x.x",
  57. "jest": "18.x.x",
  58. "jest-cli": "18.x.x",
  59. "jest-react-native": "18.x.x",
  60. "prop-types": "^15.5.10",
  61. "react": "16.0.0-alpha.6",
  62. "react-native": "0.43.0",
  63. "react-test-renderer": "15.4.2",
  64. "semver": "5.x.x"
  65. },
  66. "jest": {
  67. "preset": "jest-react-native",
  68. "testPathDirs": [
  69. "node_modules",
  70. "src2"
  71. ],
  72. "resetMocks": true,
  73. "resetModules": true
  74. }
  75. }