react-native-navigation的迁移库

package.json 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "react-native-navigation",
  3. "version": "2.0.0-experimental.145",
  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. "test:js": "jest",
  25. "test:android": "cd android && ./gradlew clean testDebugUnitTest",
  26. "test:ios": ":",
  27. "pretest": "npm run lint",
  28. "test": "npm run test:js && npm run test:android && npm run test:ios",
  29. "release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
  30. },
  31. "peerDependencies": {
  32. "react-native": "*",
  33. "react": "*"
  34. },
  35. "dependencies": {
  36. "lodash": "^4.16.0"
  37. },
  38. "optionalDependencies": {
  39. "react-redux": "*"
  40. },
  41. "devDependencies": {
  42. "react-native": "0.37.0",
  43. "react": "15.3.2",
  44. "babel-cli": "^6.8.0",
  45. "babel-core": "^6.8.0",
  46. "babel-polyfill": "^6.8.0",
  47. "babel-preset-react-native": "^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. "jest": "^17.0.0",
  55. "jest-cli": "^17.0.0"
  56. }
  57. }