package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "_from": "react-redux",
  3. "_id": "react-redux@7.2.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-EvCAZYGfOLqwV7gh849xy9/pt55rJXPwmYvI4lilPM5rUT/1NxuuN59ipdBksRVSvz0KInbPnp4IfoXJXCqiDA==",
  6. "_location": "/react-redux",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "react-redux",
  12. "name": "react-redux",
  13. "escapedName": "react-redux",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.0.tgz",
  23. "_shasum": "f970f62192b3981642fec46fd0db18a074fe879d",
  24. "_spec": "react-redux",
  25. "_where": "G:\\micro\\react\\cld2_react",
  26. "author": {
  27. "name": "Dan Abramov",
  28. "email": "dan.abramov@me.com",
  29. "url": "https://github.com/gaearon"
  30. },
  31. "browserify": {
  32. "transform": [
  33. "loose-envify"
  34. ]
  35. },
  36. "bugs": {
  37. "url": "https://github.com/reduxjs/react-redux/issues"
  38. },
  39. "bundleDependencies": false,
  40. "dependencies": {
  41. "@babel/runtime": "^7.5.5",
  42. "hoist-non-react-statics": "^3.3.0",
  43. "loose-envify": "^1.4.0",
  44. "prop-types": "^15.7.2",
  45. "react-is": "^16.9.0"
  46. },
  47. "deprecated": false,
  48. "description": "Official React bindings for Redux",
  49. "devDependencies": {
  50. "@babel/cli": "^7.5.5",
  51. "@babel/core": "^7.5.5",
  52. "@babel/plugin-proposal-decorators": "^7.4.4",
  53. "@babel/plugin-proposal-object-rest-spread": "^7.5.5",
  54. "@babel/plugin-transform-react-display-name": "^7.2.0",
  55. "@babel/plugin-transform-react-jsx": "^7.3.0",
  56. "@babel/plugin-transform-runtime": "^7.5.5",
  57. "@babel/preset-env": "^7.5.5",
  58. "@testing-library/jest-dom": "^4.1.0",
  59. "@testing-library/jest-native": "^3.0.2",
  60. "@testing-library/react": "^8.0.8",
  61. "@testing-library/react-hooks": "^1.1.0",
  62. "@testing-library/react-native": "^4.2.0",
  63. "babel-eslint": "^10.0.3",
  64. "babel-jest": "^24.9.0",
  65. "codecov": "^3.5.0",
  66. "create-react-class": "^15.6.3",
  67. "cross-env": "^5.2.0",
  68. "es3ify": "^0.2.0",
  69. "eslint": "^6.2.2",
  70. "eslint-config-prettier": "^6.1.0",
  71. "eslint-plugin-import": "^2.18.2",
  72. "eslint-plugin-prettier": "^3.1.0",
  73. "eslint-plugin-react": "^7.14.3",
  74. "glob": "^7.1.4",
  75. "jest": "^24.9.0",
  76. "prettier": "^1.18.2",
  77. "react": "^16.8.6",
  78. "react-dom": "^16.8.6",
  79. "react-native": "^0.61.4",
  80. "react-test-renderer": "^16.8.6",
  81. "redux": "^4.0.4",
  82. "rimraf": "^3.0.0",
  83. "rollup": "^1.20.2",
  84. "rollup-plugin-babel": "^4.3.3",
  85. "rollup-plugin-commonjs": "^10.0.2",
  86. "rollup-plugin-node-resolve": "^5.2.0",
  87. "rollup-plugin-replace": "^2.2.0",
  88. "rollup-plugin-terser": "^5.1.1"
  89. },
  90. "files": [
  91. "dist",
  92. "lib",
  93. "src",
  94. "es"
  95. ],
  96. "homepage": "https://github.com/reduxjs/react-redux",
  97. "keywords": [
  98. "react",
  99. "reactjs",
  100. "redux"
  101. ],
  102. "license": "MIT",
  103. "main": "./lib/index.js",
  104. "module": "es/index.js",
  105. "name": "react-redux",
  106. "peerDependencies": {
  107. "react": "^16.8.3",
  108. "redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0"
  109. },
  110. "peerDependenciesMeta": {
  111. "react-dom": {
  112. "optional": true
  113. },
  114. "react-native": {
  115. "optional": true
  116. }
  117. },
  118. "repository": {
  119. "type": "git",
  120. "url": "git+https://github.com/reduxjs/react-redux.git"
  121. },
  122. "scripts": {
  123. "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
  124. "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
  125. "build:es": "babel src --out-dir es",
  126. "build:umd": "cross-env NODE_ENV=development rollup -c -o dist/react-redux.js",
  127. "build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/react-redux.min.js",
  128. "clean": "rimraf lib dist es coverage",
  129. "coverage": "codecov",
  130. "format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"docs/**/*.md\"",
  131. "lint": "eslint src test/utils test/components test/hooks",
  132. "prepare": "npm run clean && npm run build",
  133. "pretest": "npm run lint",
  134. "test": "jest"
  135. },
  136. "unpkg": "dist/react-redux.js",
  137. "version": "7.2.0"
  138. }