Sha256: c0fdf416f51397bf2d94c98466bf85228ed4f4ac39e5e4039731a7a1ae75cda9
Contents?: true
Size: 369 Bytes
Versions: 69
Compression:
Stored size: 369 Bytes
Contents
/* * npm-config.js: Config that conform to npm logging levels. * * (C) 2010 Charlie Robbins * MIT LICENCE * */ var npmConfig = exports; npmConfig.levels = { silly: 0, debug: 1, verbose: 2, info: 3, warn: 4, error: 5 }; npmConfig.colors = { silly: 'magenta', verbose: 'cyan', debug: 'blue', info: 'green', warn: 'yellow', error: 'red' };
Version data entries
69 entries across 69 versions & 4 rubygems