1/* 2 * npm-config.js: Config that conform to npm logging levels. 3 * 4 * (C) 2010 Charlie Robbins 5 * MIT LICENCE 6 * 7 */ 8 9var npmConfig = exports; 10 11npmConfig.levels = { 12 silly: 0, 13 verbose: 1, 14 info: 2, 15 warn: 3, 16 debug: 4, 17 error: 5 18}; 19 20npmConfig.colors = { 21 silly: 'magenta', 22 verbose: 'cyan', 23 info: 'green', 24 warn: 'yellow', 25 debug: 'blue', 26 error: 'red' 27}; 28