package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "time-stamp",
  3. "description": "Get a formatted timestamp.",
  4. "version": "2.2.0",
  5. "homepage": "https://github.com/jonschlinkert/time-stamp",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Daniel Stockman (http://evocateur.org)",
  9. "Drew (https://github.com/mendenhallmagic)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  11. "leesei (https://leesei.github.io)"
  12. ],
  13. "repository": "jonschlinkert/time-stamp",
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/time-stamp/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "main": "index.js",
  23. "types": "index.d.ts",
  24. "engines": {
  25. "node": ">=0.10.0"
  26. },
  27. "scripts": {
  28. "test": "mocha"
  29. },
  30. "devDependencies": {
  31. "gulp-format-md": "^1.0.0",
  32. "mocha": "^5.2.0",
  33. "pad-left": "^2.1.0"
  34. },
  35. "keywords": [
  36. "console",
  37. "date",
  38. "format",
  39. "formatting",
  40. "log",
  41. "pretty",
  42. "stamp",
  43. "terminal",
  44. "time",
  45. "time-stamp"
  46. ],
  47. "verb": {
  48. "run": true,
  49. "toc": true,
  50. "layout": "default",
  51. "tasks": [
  52. "readme"
  53. ],
  54. "helpers": [
  55. "./helpers.js"
  56. ],
  57. "plugins": [
  58. "gulp-format-md"
  59. ],
  60. "related": {
  61. "list": [
  62. "days",
  63. "iso-week",
  64. "month",
  65. "months",
  66. "o-clock",
  67. "seconds",
  68. "week",
  69. "weekday",
  70. "year"
  71. ]
  72. },
  73. "lint": {
  74. "reflinks": true
  75. }
  76. }
  77. }