react-native-navigation的迁移库

package.json 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "react-native-navigation",
  3. "publishConfig": {
  4. "registry": "https://registry.npmjs.org/"
  5. },
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/wix/react-native-navigation.git"
  9. },
  10. "version": "2.0.0-experimental.97",
  11. "description": "React Native Navigation - truly native navigation for iOS and Android",
  12. "nativePackage": true,
  13. "bugs": {
  14. "url": "https://github.com/wix/react-native-navigation/issues"
  15. },
  16. "homepage": "https://github.com/wix/react-native-navigation",
  17. "readme": "https://github.com/wix/react-native-navigation#readme",
  18. "main": "src/index.js",
  19. "author": "Tal Kol <talkol@gmail.com>",
  20. "license": "MIT",
  21. "scripts": {
  22. "build": ":",
  23. "lint": "eslint src test",
  24. "pretest": "npm run lint",
  25. "test": ":",
  26. "release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
  27. },
  28. "peerDependencies": {
  29. "react-native": ">=0.31.0",
  30. "react": ">=15.2.1"
  31. },
  32. "dependencies": {
  33. "react-native-controllers": "^2.0.0",
  34. "lodash": "^4.13.0",
  35. "babel-preset-react-native-stage-0": "^1.0.0"
  36. },
  37. "optionalDependencies": {
  38. "react-redux": "*"
  39. },
  40. "devDependencies": {
  41. "react-native": "0.31.0",
  42. "react": "15.2.1",
  43. "app-root-path": "^1.0.0",
  44. "babel-cli": "^6.8.0",
  45. "babel-core": "^6.8.0",
  46. "babel-polyfill": "^6.8.0",
  47. "babel-preset-react-native-stage-0": "^1.0.0",
  48. "babel-register": "^6.8.0",
  49. "eslint": "^2.5.1",
  50. "eslint-plugin-babel": "^3.0.0",
  51. "eslint-plugin-react": "^4.2.3",
  52. "eslint-plugin-react-native": "^1.0.0",
  53. "babel-eslint": "^6.0.4",
  54. "jasmine": "^2.4.1",
  55. "jasmine-reporters": "^2.1.1",
  56. "jasmine-spec-reporter": "^2.4.0",
  57. "jasmine-expect": "^2.0.2",
  58. "proxyquire": "1.7.4"
  59. }
  60. }