react-native-navigation的迁移库

package.json 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 integration scripts playground/src playground/e2e playground/scripts",
  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.41.2",
  46. "react": "15.4.2",
  47. "react-test-renderer": "15.4.2",
  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. "detox": "4.x.x",
  63. "detox-server": "1.x.x",
  64. "shell-utils": "1.x.x"
  65. },
  66. "babel": {
  67. "env": {
  68. "test": {
  69. "presets": [
  70. "react-native"
  71. ],
  72. "retainLines": true
  73. }
  74. }
  75. },
  76. "jest": {
  77. "preset": "react-native",
  78. "testPathDirs": [
  79. "<rootDir>/node_modules/",
  80. "<rootDir>/src/",
  81. "<rootDir>/integration/"
  82. ],
  83. "resetMocks": true,
  84. "resetModules": true,
  85. "coverageThreshold": {
  86. "global": {
  87. "branches": 100,
  88. "functions": 100,
  89. "lines": 100,
  90. "statements": 100
  91. }
  92. }
  93. }
  94. }