react-native-navigation的迁移库

package.json 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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": "Daniel Zlotin <zlotindaniel@gmail.com>",
  8. "contributors": [
  9. "Tal Kol <talkol@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": "node ./scripts/test.android.js",
  32. "test-ios": "node ./scripts/test.ios.js",
  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": "node ./scripts/release.js"
  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. "react-test-renderer": "15.4.1",
  48. "babel-cli": "6.x.x",
  49. "babel-core": "6.x.x",
  50. "babel-polyfill": "6.x.x",
  51. "babel-preset-react-native": "1.x.x",
  52. "babel-register": "6.x.x",
  53. "babel-jest": "18.x.x",
  54. "eslint": "3.x.x",
  55. "eslint-plugin-babel": "4.x.x",
  56. "eslint-plugin-react": "6.x.x",
  57. "eslint-plugin-react-native": "2.x.x",
  58. "jest": "18.x.x",
  59. "jest-cli": "18.x.x",
  60. "remx": "0.1.x",
  61. "semver": "5.x.x",
  62. "shell-utils": "1.x.x"
  63. },
  64. "babel": {
  65. "env": {
  66. "test": {
  67. "presets": [
  68. "react-native"
  69. ],
  70. "retainLines": true
  71. }
  72. }
  73. },
  74. "jest": {
  75. "preset": "react-native",
  76. "testPathDirs": [
  77. "node_modules",
  78. "src",
  79. "integration"
  80. ],
  81. "resetMocks": true,
  82. "resetModules": true
  83. }
  84. }