package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "pretty-time",
  3. "description": "Easily format the time from node.js `process.hrtime`. Works with timescales ranging from weeks to nanoseconds.",
  4. "version": "1.1.0",
  5. "homepage": "https://github.com/jonschlinkert/pretty-time",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/pretty-time",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/pretty-time/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js",
  14. "utils.js"
  15. ],
  16. "main": "index.js",
  17. "engines": {
  18. "node": ">=4"
  19. },
  20. "scripts": {
  21. "test": "mocha"
  22. },
  23. "devDependencies": {
  24. "gulp-format-md": "^1.0.0",
  25. "mocha": "^3.5.3"
  26. },
  27. "keywords": [
  28. "convert",
  29. "date",
  30. "format",
  31. "formatting",
  32. "hour",
  33. "hrtime",
  34. "micro",
  35. "milli",
  36. "minute",
  37. "nano",
  38. "nanosecond",
  39. "pretty",
  40. "second",
  41. "time",
  42. "week"
  43. ],
  44. "verb": {
  45. "toc": false,
  46. "layout": "default",
  47. "tasks": [
  48. "readme"
  49. ],
  50. "plugins": [
  51. "gulp-format-md"
  52. ],
  53. "related": {
  54. "list": [
  55. "o-clock",
  56. "seconds",
  57. "time-stamp",
  58. "timescale",
  59. "week",
  60. "weekday",
  61. "year"
  62. ]
  63. },
  64. "lint": {
  65. "reflinks": true
  66. }
  67. }
  68. }