UNPKG

react-translate-maker

Version:

React translation module. Internationalize your great project.

99 lines (98 loc) 3.02 kB
{ "name": "react-translate-maker", "version": "3.1.6", "description": "React translation module. Internationalize your great project.", "main": "./dist/index.js", "browser": "./lib/index.js", "module": "./module/index.js", "esnext": "./src/index.js", "sideEffects": false, "engines": { "node": ">= 6.0.0" }, "keywords": [ "translate", "translation", "localization", "localize", "locale", "project", "module", "i18n", "i10n", "l20n", "react", "react.js", "internationalization", "react-component", "interpolation", "interpolate", "plural" ], "scripts": { "prepublish": "npm run build", "test": "jest ./src/", "test:coverage": "jest --coverage ./src/", "test:watch": "jest --watch ./src/", "build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files", "build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files", "build-node": "babel ./src --out-dir ./dist --source-maps --copy-files", "build": "npm run build-node && npm run build-browser && npm run build-module", "eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ./src" }, "repository": { "type": "git", "url": "https://github.com/CherryProjects/react-translate-maker.git" }, "author": "Zlatko Fedor <zfedor@gmail.com>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/CherryProjects/react-translate-maker/issues" }, "homepage": "https://github.com/CherryProjects/react-translate-maker", "jest": { "setupFiles": [ "<rootDir>/setupJest.js" ] }, "dependencies": { "@babel/runtime": "^7.4.4", "lodash": "^4.17.11" }, "devDependencies": { "@babel/cli": "^7.4.4", "@babel/core": "^7.4.4", "@babel/plugin-transform-flow-strip-types": "7.4.4", "@babel/plugin-transform-proto-to-assign": "^7.4.4", "@babel/preset-env": "^7.4.4", "@babel/preset-react": "^7.0.0", "@babel/preset-stage-0": "^7.0.0", "@babel/plugin-transform-runtime": "^7.4.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-import-meta": "^7.2.0", "@babel/plugin-proposal-class-properties": "^7.4.4", "@babel/plugin-proposal-json-strings": "^7.2.0", "@babel/plugin-proposal-export-default-from": "^7.2.0", "babel-eslint": "^10.0.1", "cross-env": "^5.2.0", "eslint": "^5.16.0", "eslint-config-airbnb": "^17.1.0", "eslint-loader": "^2.1.2", "eslint-plugin-import": "^2.17.2", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-react": "^7.12.4", "jest": "^24.7.1", "jest-cli": "^24.7.1", "translate-maker": "^0.7.4", "enzyme": "^3.9.0", "enzyme-adapter-react-16": "^1.12.1", "react": "^16.8.6", "react-dom": "^16.8.6", "react-test-renderer": "^16.8.6" }, "peerDependencies": { "react": "16.x", "react-dom": "16.x", "translate-maker": "0.7.x" } }