react-native-navigation的迁移库

package.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "react-native-navigation",
  3. "version": "2.0.0-experimental.112",
  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. "lint": "eslint src test",
  24. "pretest": "npm run lint",
  25. "test": "cd android && ./gradlew clean testDebugUnitTest",
  26. "release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
  27. },
  28. "peerDependencies": {
  29. "react-native": "*",
  30. "react": "*"
  31. },
  32. "dependencies": {
  33. "react-native-controllers": "^2.0.0",
  34. "lodash": "^4.13.0"
  35. },
  36. "optionalDependencies": {
  37. "react-redux": "*"
  38. },
  39. "devDependencies": {
  40. "react-native": "0.31.0",
  41. "react": "15.2.1",
  42. "app-root-path": "^1.0.0",
  43. "babel-cli": "^6.8.0",
  44. "babel-core": "^6.8.0",
  45. "babel-polyfill": "^6.8.0",
  46. "babel-preset-react-native": "^1.0.0",
  47. "babel-register": "^6.8.0",
  48. "eslint": "^2.5.1",
  49. "eslint-plugin-babel": "^3.0.0",
  50. "eslint-plugin-react": "^4.2.3",
  51. "eslint-plugin-react-native": "^1.0.0",
  52. "babel-eslint": "^6.0.4",
  53. "jasmine": "^2.4.1",
  54. "jasmine-reporters": "^2.1.1",
  55. "jasmine-spec-reporter": "^2.4.0",
  56. "jasmine-expect": "^2.0.2",
  57. "proxyquire": "1.7.4"
  58. }
  59. }