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