react-native-navigation的迁移库

package.json 2.0KB

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