UNPKG

react-intl-redux

Version:
120 lines (119 loc) 3.03 kB
{ "name": "react-intl-redux", "version": "2.4.1", "description": "Redux binding for React Intl", "main": "lib", "side-effects": false, "scripts": { "build": "cross-env NODE_ENV=production babel src --out-dir lib", "clean": "del lib coverage", "lint": "eslint --ignore-path .gitignore --ext js,md .", "prepublish": "run-s clean build", "test": "jest" }, "peerDependencies": { "@babel/runtime": "^7.17.9", "prop-types": "^15.8.1", "react": "^16.12.0 || ^17.0.2 || ^18.0.0", "react-intl": "^2.2.2 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0", "react-redux": "^5.0.1 || ^6.0.0 || ^7.0.0 || ^8.0.0" }, "dependencies": { "@babel/runtime": "^7.17.9", "prop-types": "^15.8.1" }, "devDependencies": { "@babel/cli": "^7.17.10", "@babel/core": "^7.17.10", "@babel/plugin-proposal-export-default-from": "7.16.7", "@babel/plugin-syntax-dynamic-import": "7.8.3", "@babel/plugin-syntax-import-meta": "7.10.4", "@babel/plugin-transform-runtime": "^7.17.10", "@babel/plugin-transform-shorthand-properties": "^7.16.7", "@babel/preset-env": "^7.17.10", "@babel/preset-react": "^7.16.7", "@babel/register": "^7.17.7", "@wojtekmaj/enzyme-adapter-react-17": "^0.6.7", "babel-jest": "^28.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "cross-env": "^7.0.3", "del-cli": "^4.0.1", "enzyme": "^3.11.0", "eslint": "^8.15.0", "eslint-config-concise": "^0.40.1", "eslint-config-concise-esnext": "^0.40.1", "eslint-config-concise-jest": "^0.40.1", "eslint-config-concise-react": "^0.40.1", "eslint-plugin-react": "^7.29.4", "husky": "^3.1.0", "immutable": "^4.0.0", "intl": "^1.2.5", "jest": "^28.1.0", "jest-environment-jsdom": "^28.1.0", "jsdom": "^19.0.0", "lint-staged": "^9.5.0", "npm-run-all": "^4.1.5", "prettier-eslint-cli": "^5.0.1", "react": "^17.0.2", "react-dom": "^17.0.2", "react-intl": "^6.4.4", "react-redux": "^8.0.1", "react-test-renderer": "^17.0.2", "redux": "^4.2.0", "redux-immutable": "^4.0.0" }, "repository": "ratson/react-intl-redux", "license": "MIT", "files": [ "*.md", "LICENSE", "lib", "src" ], "keywords": [ "react", "reactjs", "react-intl", "react-redux", "intl", "i18n", "redux" ], "browserslist": [ "last 2 versions", "Android > 2", "last 2 ChromeAndroid versions" ], "jest": { "testEnvironment": "jsdom" }, "eslintConfig": { "extends": [ "concise", "concise-esnext", "concise-jest", "concise-react" ], "rules": { "comma-dangle": "off", "default-param-last": "off", "react/jsx-curly-newline": "off" }, "settings": { "react": { "version": "detect" } } }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ] } }