arb-convert
Version:
Convert Application Resource Bundle (ARB) translation files to other translation formats and back
66 lines (65 loc) • 1.72 kB
JSON
{
"name": "arb-convert",
"version": "1.2.1",
"description": "Convert Application Resource Bundle (ARB) translation files to other translation formats and back",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"arb2xliff": "dist/cli/arb2xliff.js",
"xliff2arb": "dist/cli/xliff2arb.js",
"arb2po": "dist/cli/arb2po.js",
"po2arb": "dist/cli/po2arb.js"
},
"scripts": {
"prepare": "husky install",
"prepack": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"test": "TZ=UTC jest --coverage",
"test:watch": "TZ=UTC jest --watch",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/trufi-association/arb-convert.git"
},
"keywords": [
"ARB",
"Application Resource Bundle",
"XLIFF",
"gettext",
"PO",
"translation",
"converter",
"Flutter",
"Dart"
],
"author": "Malte Dölker <mdoelker@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trufi-association/arb-convert/issues"
},
"homepage": "https://github.com/trufi-association/arb-tconvert#readme",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"commander": "^8.1.0",
"tempy": "^1.0.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.8",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}