@cabify/redux-polyglot
Version:
Tool for using Polyglot.js with Redux
108 lines (107 loc) • 2.8 kB
JSON
{
"name": "@cabify/redux-polyglot",
"version": "0.9.0",
"description": "Tool for using Polyglot.js with Redux",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --out-dir dist --ignore '*.spec.js'",
"clean": "rimraf ./dist",
"test": "jest --coverage",
"test:all": "npm run -s prepublishOnly",
"test:watch": "jest --watch --coverage",
"tw": "npm run test:watch",
"publish": "npm publish --access public",
"prepublishOnly": "node scripts/prepublish.js",
"postpublish": "echo --- PUBLISHED ---",
"lint": "eslint --max-warnings 0 src"
},
"repository": {
"type": "git",
"url": "https://github.com/Tiqa/redux-polyglot.git"
},
"types": "./dist/types.d.ts",
"keywords": [
"polyglot",
"redux",
"react",
"i18n",
"reselect",
"component enhancer",
"translation"
],
"maintainers": [
{
"name": "Guillaume Arm",
"email": "garm@student.42.fr"
},
{
"name": "Jalil Arfaoui",
"email": "jalil@arfaoui.net"
},
{
"name": "Jérémy Vincent",
"email": "jvincent@student.42.fr"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Tiqa/redux-polyglot/issues"
},
"homepage": "https://github.com/Tiqa/redux-polyglot",
"jest": {
"setupTestFrameworkScriptFile": "./src/private/test/boot.js",
"moduleFileExtensions": [
"js",
"jsx"
],
"roots": [
"src"
],
"coveragePathIgnorePatterns": [
"src/private/test/"
],
"testURL": "http://localhost"
},
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.curry": "^4.1.1",
"node-polyglot": "^2.3.0",
"redux": "^4.0.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@types/node-polyglot": "^0.4.31",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"prop-types": "^15.7.2",
"ramda": "^0.25.0",
"react": "16.10.1",
"react-dom": "^16.10.1",
"react-redux": "^7.1.1",
"react-test-renderer": "^16.3.2",
"redux-mock-store": "^1.5.1",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"webpack": "^4.6.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": ">= 16.8.0",
"react-redux": ">= 7.0.0"
}
}