react-native-navigation的迁移库

package.json 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "react-native-navigation",
  3. "version": "2.0.0-experimental.165",
  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 --coverage",
  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. "test:watch": "jest --coverage --watch",
  30. "release": "npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
  31. },
  32. "optionalDependencies": {
  33. "react-redux": "*"
  34. },
  35. "peerDependencies": {
  36. "react-native": "*",
  37. "react": "*"
  38. },
  39. "dependencies": {
  40. "lodash": "4.x.x"
  41. },
  42. "devDependencies": {
  43. "react-native": "0.38.0",
  44. "react": "15.4.1",
  45. "babel-cli": "6.x.x",
  46. "babel-core": "6.x.x",
  47. "babel-polyfill": "6.x.x",
  48. "babel-preset-react-native": "1.x.x",
  49. "babel-register": "6.x.x",
  50. "babel-jest": "17.x.x",
  51. "eslint": "3.x.x",
  52. "eslint-plugin-babel": "3.x.x",
  53. "eslint-plugin-react": "6.x.x",
  54. "eslint-plugin-react-native": "2.x.x",
  55. "jest": "17.x.x",
  56. "jest-cli": "17.x.x",
  57. "jest-react-native": "17.x.x",
  58. "react-test-renderer": "15.4.1"
  59. },
  60. "jest": {
  61. "preset": "jest-react-native",
  62. "testPathDirs": [
  63. "node_modules",
  64. "src2"
  65. ],
  66. "resetMocks": true,
  67. "resetModules": true
  68. }
  69. }