114 lines
2.4 KiB
Plaintext
114 lines
2.4 KiB
Plaintext
{
|
|
"name": "cli-color",
|
|
"version": "2.0.3",
|
|
"description": "Colors, formatting and other tools for the console",
|
|
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
|
|
"keywords": [
|
|
"ansi",
|
|
"color",
|
|
"console",
|
|
"terminal",
|
|
"cli",
|
|
"shell",
|
|
"log",
|
|
"logging",
|
|
"xterm"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/medikoo/cli-color.git"
|
|
},
|
|
"dependencies": {
|
|
"d": "^1.0.1",
|
|
"es5-ext": "^0.10.61",
|
|
"es6-iterator": "^2.0.3",
|
|
"memoizee": "^0.4.15",
|
|
"timers-ext": "^0.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-medikoo": "^4.1.2",
|
|
"git-list-updated": "^1.2.1",
|
|
"github-release-from-cc-changelog": "^2.3.0",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^13.0.3",
|
|
"nyc": "^15.1.0",
|
|
"prettier-elastic": "^2.2.1",
|
|
"tad": "^3.1.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint"
|
|
],
|
|
"*.{css,html,js,json,md,yaml,yml}": [
|
|
"prettier -c"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "medikoo/node/es5",
|
|
"root": true,
|
|
"rules": {
|
|
"id-length": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": "examples/**",
|
|
"rules": {
|
|
"no-console": "off"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"tabWidth": 4,
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.md",
|
|
"*.yml"
|
|
],
|
|
"options": {
|
|
"tabWidth": 2
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"exclude": [
|
|
".github",
|
|
"coverage/**",
|
|
"examples",
|
|
"test/**",
|
|
"*.config.js"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"html",
|
|
"text-summary"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"coverage": "nyc npm test",
|
|
"lint": "eslint --ignore-path=.gitignore .",
|
|
"lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
|
|
"prepare-release": "standard-version && prettier --write CHANGELOG.md",
|
|
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
|
|
"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
|
|
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
|
|
"prettify:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
|
|
"test": "tad"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
},
|
|
"license": "ISC"
|
|
}
|