react-native-navigation的迁移库

package.json 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "react-native-navigation",
  3. "version": "2.0.0-alpha.0",
  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. "contributors": [
  9. "Daniel Zlotin <zlotindaniel@gmail.com>",
  10. "Guy Carmeli <guyc@wix.com>",
  11. "Ran Greenberg <rang@wix.com>",
  12. "Artal Druk <artald@wix.com>"
  13. ],
  14. "publishConfig": {
  15. "registry": "https://registry.npmjs.org/"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/wix/react-native-navigation/issues"
  19. },
  20. "homepage": "https://github.com/wix/react-native-navigation",
  21. "readme": "https://github.com/wix/react-native-navigation#readme",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/wix/react-native-navigation.git"
  25. },
  26. "main": "src/index.js",
  27. "scripts": {
  28. "build": ":",
  29. "lint": "eslint src",
  30. "test-js": "BABEL_ENV=test jest --coverage",
  31. "test-android": "cd android && ./gradlew clean testDebugUnitTest",
  32. "test-ios": ":",
  33. "test": "npm run lint && npm run test-js && npm run test-android && npm run test-ios",
  34. "test-watch": "BABEL_ENV=test jest --coverage --watch",
  35. "release": ":"
  36. },
  37. "peerDependencies": {
  38. "react-native": "*",
  39. "react": "*"
  40. },
  41. "dependencies": {
  42. "lodash": "4.x.x"
  43. },
  44. "devDependencies": {
  45. "react-native": "0.38.0",
  46. "react": "15.4.1",
  47. "babel-cli": "6.x.x",
  48. "babel-core": "6.x.x",
  49. "babel-polyfill": "6.x.x",
  50. "babel-preset-react-native": "1.x.x",
  51. "babel-register": "6.x.x",
  52. "babel-jest": "18.x.x",
  53. "eslint": "3.x.x",
  54. "eslint-plugin-babel": "4.x.x",
  55. "eslint-plugin-react": "6.x.x",
  56. "eslint-plugin-react-native": "2.x.x",
  57. "jest": "18.x.x",
  58. "jest-cli": "18.x.x",
  59. "react-test-renderer": "15.4.1",
  60. "remx": "0.1.x",
  61. "semver": "5.x.x"
  62. },
  63. "babel": {
  64. "env": {
  65. "test": {
  66. "presets": [
  67. "react-native"
  68. ],
  69. "retainLines": true
  70. }
  71. }
  72. },
  73. "jest": {
  74. "preset": "react-native",
  75. "testPathDirs": [
  76. "node_modules",
  77. "src",
  78. "integration"
  79. ],
  80. "resetMocks": true,
  81. "resetModules": true
  82. }
  83. }