react-native-navigation的迁移库

package.json 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "test-js": "eslint src integration scripts playground/src playground/e2e playground/scripts && BABEL_ENV=test jest --coverage",
  30. "test-android": "node ./scripts/test.android.js",
  31. "test-ios": "node ./scripts/test.ios.js",
  32. "test": "yarn run test-js && yarn run test-android && yarn run test-ios",
  33. "test-watch": "BABEL_ENV=test jest --coverage --watch",
  34. "release": "node ./scripts/release.js"
  35. },
  36. "peerDependencies": {
  37. "react-native": "*",
  38. "react": "*"
  39. },
  40. "dependencies": {
  41. "lodash": "4.x.x"
  42. },
  43. "devDependencies": {
  44. "react-native": "0.41.2",
  45. "react": "15.4.2",
  46. "react-test-renderer": "15.4.2",
  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. "remx": "0.1.x",
  60. "semver": "5.x.x",
  61. "detox": "5.x.x",
  62. "mocha": "*",
  63. "shell-utils": "1.x.x"
  64. },
  65. "babel": {
  66. "env": {
  67. "test": {
  68. "presets": [
  69. "react-native"
  70. ],
  71. "retainLines": true
  72. }
  73. }
  74. },
  75. "jest": {
  76. "preset": "react-native",
  77. "testPathDirs": [
  78. "<rootDir>/node_modules/",
  79. "<rootDir>/src/",
  80. "<rootDir>/integration/"
  81. ],
  82. "resetMocks": true,
  83. "resetModules": true,
  84. "coverageThreshold": {
  85. "global": {
  86. "branches": 100,
  87. "functions": 100,
  88. "lines": 100,
  89. "statements": 100
  90. }
  91. }
  92. }
  93. }