package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "i18n",
  3. "description": "lightweight translation module with dynamic json storage",
  4. "version": "0.15.1",
  5. "homepage": "http://github.com/mashpie/i18n-node",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/mashpie/i18n-node.git"
  9. },
  10. "author": "Marcus Spiegel <marcus.spiegel@gmail.com>",
  11. "funding": {
  12. "url": "https://github.com/sponsors/mashpie"
  13. },
  14. "main": "./index",
  15. "files": [
  16. "i18n.js",
  17. "index.js",
  18. "SECURITY.md"
  19. ],
  20. "keywords": [
  21. "template",
  22. "i18n",
  23. "l10n"
  24. ],
  25. "directories": {
  26. "lib": "."
  27. },
  28. "dependencies": {
  29. "@messageformat/core": "^3.0.0",
  30. "debug": "^4.3.3",
  31. "fast-printf": "^1.6.9",
  32. "make-plural": "^7.0.0",
  33. "math-interval-parser": "^2.0.1",
  34. "mustache": "^4.2.0"
  35. },
  36. "devDependencies": {
  37. "async": "^3.2.3",
  38. "cookie-parser": "^1.4.6",
  39. "eslint": "^8.8.0",
  40. "eslint-config-prettier": "^8.3.0",
  41. "eslint-config-standard": "^17.0.0",
  42. "eslint-plugin-import": "^2.25.4",
  43. "eslint-plugin-node": "^11.1.0",
  44. "eslint-plugin-prettier": "^4.0.0",
  45. "eslint-plugin-promise": "^6.0.0",
  46. "eslint-plugin-standard": "^5.0.0",
  47. "express": "^4.17.2",
  48. "husky": "^8.0.1",
  49. "lint-staged": "^12.3.2",
  50. "mocha": "^10.0.0",
  51. "nyc": "^15.1.0",
  52. "prettier": "^2.5.1",
  53. "should": "^13.2.3",
  54. "sinon": "^14.0.0",
  55. "yaml": "^2.1.0",
  56. "zombie": "^6.1.4"
  57. },
  58. "engines": {
  59. "node": ">=10"
  60. },
  61. "scripts": {
  62. "test": "mocha --exit",
  63. "test-ci": "nyc mocha -- --exit",
  64. "coverage": "nyc report --reporter=lcov"
  65. },
  66. "lint-staged": {
  67. "*.js": "eslint --cache --fix"
  68. },
  69. "license": "MIT",
  70. "husky": {
  71. "hooks": {
  72. "pre-commit": "lint-staged"
  73. }
  74. }
  75. }