UNPKG

@lxg/l10n-tools

Version:

Catalog manager for @lxg/l10n, a lightweight translation library. To be installed as dev dependency.

62 lines (61 loc) 1.72 kB
{ "name": "@lxg/l10n-tools", "type": "module", "version": "1.4.1", "description": "Catalog manager for @lxg/l10n, a lightweight translation library. To be installed as dev dependency.", "bin": { "l10n": "l10n.mjs" }, "scripts": { "lint": "for script in $(find . -iname '*.mjs' | grep -v -e test.mjs -e node_modules); do npx eslint $script; done", "lint:fix": "for script in $(find . -iname '*.mjs' | grep -v -e test.mjs -e node_modules); do npx eslint $script --fix; done", "test": "node --experimental-vm-modules node_modules/.bin/jest", "test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage" }, "files": [ "lib/", "cldr/", "l10n.mjs" ], "keywords": [ "internationalisation", "i18n", "localization", "l10n", "translation", "translate", "gettext" ], "repository": { "type": "git", "url": "git+https://github.com/lxg/l10n-tools.git" }, "author": { "name": "Alexander Günsche", "url": "https://lxg.de/" }, "license": "ISC", "dependencies": { "acorn-loose": "^7.1.0", "acorn-walk": "^7.2.0", "ajv": "^6.12.6", "fast-glob": "^3.2.4", "gettext-parser": "^4.0.4" }, "devDependencies": { "cldr-core": "^38.1.0", "cldr-dates-modern": "^38.1.0", "eslint": "^6.8.0", "eslint-plugin-jest": "^23.20.0", "jest": "^26.6.3" }, "jest": { "testMatch": [ "**/*.test.mjs" ], "moduleFileExtensions": [ "mjs", "js" ] } }