react-native-navigation的迁移库

package.json 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "react-native-navigation",
  3. "version": "2.0.0-alpha.1",
  4. "description": "React Native Navigation - truly native navigation for iOS and Android",
  5. "license": "MIT",
  6. "nativePackage": true,
  7. "author": "Daniel Zlotin <zlotindaniel@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 src2",
  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.x.x"
  37. },
  38. "devDependencies": {
  39. "react-native": "0.37.0",
  40. "react": "15.3.2",
  41. "babel-cli": "6.x.x",
  42. "babel-core": "6.x.x",
  43. "babel-polyfill": "6.x.x",
  44. "babel-preset-react-native": "1.x.x",
  45. "babel-register": "6.x.x",
  46. "eslint": "3.x.x",
  47. "eslint-plugin-babel": "3.x.x",
  48. "eslint-plugin-react": "6.x.x",
  49. "eslint-plugin-react-native": "2.x.x",
  50. "jest": "17.x.x",
  51. "jest-cli": "17.x.x"
  52. }
  53. }