package.json 889 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "y18n",
  3. "version": "4.0.3",
  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. "release": "standard-version"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:yargs/y18n.git"
  15. },
  16. "files": [
  17. "index.js"
  18. ],
  19. "keywords": [
  20. "i18n",
  21. "internationalization",
  22. "yargs"
  23. ],
  24. "author": "Ben Coe <ben@npmjs.com>",
  25. "license": "ISC",
  26. "bugs": {
  27. "url": "https://github.com/yargs/y18n/issues"
  28. },
  29. "homepage": "https://github.com/yargs/y18n",
  30. "devDependencies": {
  31. "chai": "^4.0.1",
  32. "coveralls": "^3.0.0",
  33. "mocha": "^4.0.1",
  34. "nyc": "^11.0.1",
  35. "rimraf": "^2.5.0",
  36. "standard": "^10.0.0-beta.0",
  37. "standard-version": "^4.2.0"
  38. }
  39. }