index.js 538 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * index.js: Default settings for all levels that winston knows about.
  3. *
  4. * (C) 2010 Charlie Robbins
  5. * MIT LICENCE
  6. */
  7. 'use strict';
  8. /**
  9. * Export config set for the CLI.
  10. * @type {Object}
  11. */
  12. Object.defineProperty(exports, 'cli', {
  13. value: require('./cli')
  14. });
  15. /**
  16. * Export config set for npm.
  17. * @type {Object}
  18. */
  19. Object.defineProperty(exports, 'npm', {
  20. value: require('./npm')
  21. });
  22. /**
  23. * Export config set for the syslog.
  24. * @type {Object}
  25. */
  26. Object.defineProperty(exports, 'syslog', {
  27. value: require('./syslog')
  28. });