1{ 2 "name": "react-redux", 3 "version": "7.2.0", 4 "description": "Official React bindings for Redux", 5 "keywords": [ 6 "react", 7 "reactjs", 8 "redux" 9 ], 10 "license": "MIT", 11 "author": "Dan Abramov <dan.abramov@me.com> (https://github.com/gaearon)", 12 "homepage": "https://github.com/reduxjs/react-redux", 13 "repository": "github:reduxjs/react-redux", 14 "bugs": "https://github.com/reduxjs/react-redux/issues", 15 "main": "./lib/index.js", 16 "unpkg": "dist/react-redux.js", 17 "module": "es/index.js", 18 "files": [ 19 "dist", 20 "lib", 21 "src", 22 "es" 23 ], 24 "scripts": { 25 "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib", 26 "build:es": "babel src --out-dir es", 27 "build:umd": "cross-env NODE_ENV=development rollup -c -o dist/react-redux.js", 28 "build:umd:min": "cross-env NODE_ENV=production rollup -c -o dist/react-redux.min.js", 29 "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min", 30 "clean": "rimraf lib dist es coverage", 31 "format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"docs/**/*.md\"", 32 "lint": "eslint src test/utils test/components test/hooks", 33 "prepare": "npm run clean && npm run build", 34 "pretest": "npm run lint", 35 "test": "jest", 36 "coverage": "codecov" 37 }, 38 "peerDependencies": { 39 "react": "^16.8.3", 40 "redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0" 41 }, 42 "peerDependenciesMeta": { 43 "react-dom": { 44 "optional": true 45 }, 46 "react-native": { 47 "optional": true 48 } 49 }, 50 "dependencies": { 51 "@babel/runtime": "^7.5.5", 52 "hoist-non-react-statics": "^3.3.0", 53 "loose-envify": "^1.4.0", 54 "prop-types": "^15.7.2", 55 "react-is": "^16.9.0" 56 }, 57 "devDependencies": { 58 "@babel/cli": "^7.5.5", 59 "@babel/core": "^7.5.5", 60 "@babel/plugin-proposal-decorators": "^7.4.4", 61 "@babel/plugin-proposal-object-rest-spread": "^7.5.5", 62 "@babel/plugin-transform-react-display-name": "^7.2.0", 63 "@babel/plugin-transform-react-jsx": "^7.3.0", 64 "@babel/plugin-transform-runtime": "^7.5.5", 65 "@babel/preset-env": "^7.5.5", 66 "@testing-library/jest-dom": "^4.1.0", 67 "@testing-library/jest-native": "^3.0.2", 68 "@testing-library/react": "^8.0.8", 69 "@testing-library/react-hooks": "^1.1.0", 70 "@testing-library/react-native": "^4.2.0", 71 "babel-eslint": "^10.0.3", 72 "babel-jest": "^24.9.0", 73 "codecov": "^3.5.0", 74 "create-react-class": "^15.6.3", 75 "cross-env": "^5.2.0", 76 "es3ify": "^0.2.0", 77 "eslint": "^6.2.2", 78 "eslint-config-prettier": "^6.1.0", 79 "eslint-plugin-import": "^2.18.2", 80 "eslint-plugin-prettier": "^3.1.0", 81 "eslint-plugin-react": "^7.14.3", 82 "glob": "^7.1.4", 83 "jest": "^24.9.0", 84 "prettier": "^1.18.2", 85 "react": "^16.8.6", 86 "react-dom": "^16.8.6", 87 "react-native": "^0.61.4", 88 "react-test-renderer": "^16.8.6", 89 "redux": "^4.0.4", 90 "rimraf": "^3.0.0", 91 "rollup": "^1.20.2", 92 "rollup-plugin-babel": "^4.3.3", 93 "rollup-plugin-commonjs": "^10.0.2", 94 "rollup-plugin-node-resolve": "^5.2.0", 95 "rollup-plugin-replace": "^2.2.0", 96 "rollup-plugin-terser": "^5.1.1" 97 }, 98 "browserify": { 99 "transform": [ 100 "loose-envify" 101 ] 102 } 103} 104