package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@messageformat/core",
  3. "version": "3.2.0",
  4. "description": "PluralFormat and SelectFormat Message and i18n Tool - A JavaScript Implemenation of the ICU standards.",
  5. "keywords": [
  6. "i18n",
  7. "pluralformat",
  8. "icu",
  9. "gettext",
  10. "selectformat",
  11. "messageformat",
  12. "internationalization"
  13. ],
  14. "contributors": [
  15. "Alex Sexton <alexsexton@gmail.com>",
  16. "Eemeli Aro <eemeli@gmail.com>"
  17. ],
  18. "license": "MIT",
  19. "homepage": "http://messageformat.github.io/messageformat/api/core/",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/messageformat/messageformat.git",
  23. "directory": "packages/core"
  24. },
  25. "main": "lib/messageformat.js",
  26. "browser": "./messageformat.js",
  27. "files": [
  28. "compile-module.js",
  29. "lib/",
  30. "messageformat.js"
  31. ],
  32. "dependencies": {
  33. "@messageformat/date-skeleton": "^1.0.0",
  34. "@messageformat/number-skeleton": "^1.0.0",
  35. "@messageformat/parser": "^5.1.0",
  36. "@messageformat/runtime": "^3.0.1",
  37. "make-plural": "^7.0.0",
  38. "safe-identifier": "^0.4.1"
  39. },
  40. "scripts": {
  41. "build": "rollup -c",
  42. "postbuild": "tsc -p tsconfig.declarations.json",
  43. "extract-api": "api-extractor run --verbose"
  44. }
  45. }