qasim
Version:
An Open-source license manager for you Node.Js applications
17 lines (13 loc) • 364 B
JavaScript
const { name, version } = require('../package.json');
const chalk = require('chalk');
const HELPERS = {
VERSION : `${name.toUpperCase()} ${version}`,
PRINT : chalk.white,
ERROR : chalk.bold.red,
WARNING : chalk.yellow,
SUCCESS : chalk.green,
PREETY : chalk.cyan,
SPACE : " "
}
module.exports = HELPERS;