UNPKG

clix-logger

Version:

Another console log wrapper with colored support and icons

65 lines (64 loc) 2.26 kB
{ "name": "clix-logger", "version": "2.0.0", "description": "Another console log wrapper with colored support and icons", "main": "index.js", "engines": { "node": ">=8.11.1" }, "scripts": { "lint": "eslint --cache --cache-location node_modules/.cache/ -f friendly '*.js' 'lib/*.js' 'specs/*.js'", "test": "mocha-runner 'specs/**/*.js'", "watch": "watch-spawn -p 'specs/**/*.js' -p 'index.js' -p 'src/**/*.js' -i npm run test", "check": "npm run lint && npm test", "changelog": "changelogx -f markdown -o ./changelog.md", "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", "install-hooks": "changelogx install-hook", "pre-v": "npm run check", "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v" }, "repository": { "type": "git", "url": "https://github.com/royriojas/clix-logger" }, "license": "MIT", "author": "Roy Riojas (http://royriojas.com)", "devDependencies": { "@typescript-eslint/eslint-plugin": "1.10.2", "@typescript-eslint/parser": "1.10.2", "babel-eslint": "10.0.1", "changelogx": "4.0.0", "eslint": "5.16.0", "eslint-config-airbnb": "17.1.0", "eslint-config-prettier": "4.3.0", "eslint-formatter-friendly": "6.0.0", "eslint-plugin-import": "2.17.3", "eslint-plugin-jsx-a11y": "6.2.1", "eslint-plugin-mocha": "5.3.0", "eslint-plugin-prettier": "3.1.0", "eslint-plugin-react": "7.13.0", "mocha-runner": "3.0.0", "prettier": "1.18.2", "proxyquire": "2.1.0", "watch-spawn": "2.0.0" }, "dependencies": { "chalk": "2.4.2", "moment": "2.24.0" }, "bugs": { "url": "https://github.com/royriojas/clix-logger/issues" }, "homepage": "https://github.com/royriojas/clix-logger", "keywords": [ "console", "logger", "simple logger", "loggy", "colored output", "color console" ] }