package.json 821 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "y18n",
  3. "version": "3.2.2",
  4. "description": "the bare-bones internationalization library used by yargs",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard",
  8. "test": "nyc mocha",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git@github.com:yargs/y18n.git"
  14. },
  15. "files": [
  16. "index.js"
  17. ],
  18. "keywords": [
  19. "i18n",
  20. "internationalization",
  21. "yargs"
  22. ],
  23. "author": "Ben Coe <ben@npmjs.com>",
  24. "license": "ISC",
  25. "bugs": {
  26. "url": "https://github.com/yargs/y18n/issues"
  27. },
  28. "homepage": "https://github.com/yargs/y18n",
  29. "devDependencies": {
  30. "chai": "^3.4.1",
  31. "coveralls": "^2.11.6",
  32. "mocha": "^3.0.0",
  33. "nyc": "^10.0.0",
  34. "rimraf": "^2.5.0",
  35. "standard": "^10.0.0-beta.0"
  36. }
  37. }