UNPKG

i18n

Version:

lightweight translation module with dynamic json storage

75 lines 1.74 kB
{ "name": "i18n", "description": "lightweight translation module with dynamic json storage", "version": "0.15.3", "homepage": "http://github.com/mashpie/i18n-node", "repository": { "type": "git", "url": "http://github.com/mashpie/i18n-node.git" }, "author": "Marcus Spiegel <marcus.spiegel@gmail.com>", "funding": { "url": "https://github.com/sponsors/mashpie" }, "main": "./index", "files": [ "i18n.js", "index.js", "SECURITY.md" ], "keywords": [ "template", "i18n", "l10n" ], "directories": { "lib": "." }, "dependencies": { "@messageformat/core": "^3.4.0", "debug": "^4.4.3", "fast-printf": "^1.6.10", "make-plural": "^7.4.0", "math-interval-parser": "^2.0.1", "mustache": "^4.2.0" }, "devDependencies": { "async": "^3.2.6", "cookie-parser": "^1.4.7", "eslint": "^8.57.1", "eslint-config-prettier": "^8.10.2", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.5", "eslint-plugin-promise": "^6.6.0", "eslint-plugin-standard": "^5.0.0", "express": "^4.21.2", "husky": "^8.0.3", "lint-staged": "^12.5.0", "mocha": "^10.8.2", "nyc": "^15.1.0", "prettier": "^2.8.8", "should": "^13.2.3", "sinon": "^14.0.2", "yaml": "^2.8.1", "supertest": "^6.3.4" }, "engines": { "node": ">=10" }, "lint-staged": { "*.js": "eslint --cache --fix" }, "license": "MIT", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "scripts": { "test": "mocha --exit", "test-ci": "nyc mocha -- --exit", "coverage": "nyc report --reporter=lcov" } }