react-native-navigation的迁移库

package.json 1.7KB

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