package.json 1.4 KB

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