123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- {
- "name": "cli-color",
- "version": "2.0.4",
- "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": "medikoo/cli-color",
- "dependencies": {
- "d": "^1.0.1",
- "es5-ext": "^0.10.64",
- "es6-iterator": "^2.0.3",
- "memoizee": "^0.4.15",
- "timers-ext": "^0.1.7"
- },
- "devDependencies": {
- "eslint": "^8.57.0",
- "eslint-config-medikoo": "^4.2.0",
- "git-list-updated": "^1.2.1",
- "github-release-from-cc-changelog": "^2.3.0",
- "husky": "^4.3.8",
- "lint-staged": "~13.2.3",
- "nyc": "^15.1.0",
- "prettier-elastic": "^2.8.8",
- "tad": "^3.1.1"
- },
- "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"
- }
|