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