package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "gettext-parser",
  3. "description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less",
  4. "version": "2.0.0",
  5. "author": "Andris Reinman",
  6. "contributors": [
  7. {
  8. "name": "Sam Hauglustaine"
  9. }
  10. ],
  11. "homepage": "http://github.com/smhg/gettext-parser",
  12. "repository": {
  13. "type": "git",
  14. "url": "http://github.com/smhg/gettext-parser.git"
  15. },
  16. "scripts": {
  17. "lint": "eslint lib/*.js test/*.js index.js",
  18. "test": "mocha",
  19. "preversion": "npm run lint && npm test",
  20. "postversion": "git push && git push --tags"
  21. },
  22. "main": "./index",
  23. "license": "MIT",
  24. "dependencies": {
  25. "encoding": "^0.1.12",
  26. "safe-buffer": "^5.1.2"
  27. },
  28. "devDependencies": {
  29. "chai": "^3.5.0",
  30. "eslint": "^4.19.1",
  31. "eslint-config-standard": "^11.0.0",
  32. "eslint-plugin-import": "^2.13.0",
  33. "eslint-plugin-node": "^6.0.1",
  34. "eslint-plugin-promise": "^3.8.0",
  35. "eslint-plugin-standard": "^3.1.0",
  36. "mocha": "^3.5.3"
  37. },
  38. "keywords": [
  39. "i18n",
  40. "l10n",
  41. "gettext",
  42. "mo",
  43. "po"
  44. ]
  45. }