{
	"name": "cli-sprintf-format",
	"version": "1.1.1",
	"description": "sprintf formatting targetted for CLI",
	"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
	"keywords": [
		"printf",
		"sprintf",
		"log",
		"format",
		"string",
		"cli",
		"ansi"
	],
	"repository": "medikoo/cli-sprintf-format",
	"dependencies": {
		"cli-color": "^2.0.1",
		"es5-ext": "^0.10.53",
		"sprintf-kit": "^2.0.1",
		"supports-color": "^6.1.0"
	},
	"devDependencies": {
		"cjs-module": "^1.5.0",
		"d": "^1.0.1",
		"eslint": "^8.5.0",
		"eslint-config-medikoo": "^4.1.1",
		"essentials": "^1.2.0",
		"github-release-from-cc-changelog": "^2.2.0",
		"husky": "^4.3.8",
		"lint-staged": "^12.1.3",
		"nyc": "^15.1.0",
		"prettier-elastic": "^2.2.1",
		"process-utils": "^3.1.0",
		"tape": "^5.3.2"
	},
	"husky": {
		"hooks": {
			"pre-commit": "lint-staged"
		}
	},
	"lint-staged": {
		"*.js": [
			"eslint"
		],
		"*.{css,html,js,json,md,yaml,yml}": [
			"prettier -c"
		]
	},
	"eslintConfig": {
		"extends": "medikoo/node/6",
		"overrides": [
			{
				"files": "get-modifiers.js",
				"rules": {
					"id-length": "off"
				}
			}
		]
	},
	"prettier": {
		"printWidth": 100,
		"tabWidth": 4,
		"overrides": [
			{
				"files": [
					"*.md",
					"*.yml"
				],
				"options": {
					"tabWidth": 2
				}
			}
		]
	},
	"nyc": {
		"all": true,
		"exclude": [
			".github",
			"coverage/**",
			"test/**",
			"*.config.js"
		],
		"reporter": [
			"lcov",
			"html",
			"text-summary"
		]
	},
	"scripts": {
		"coverage": "nyc npm test",
		"lint": "eslint --ignore-path=.gitignore .",
		"lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
		"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
		"prettier-check:updated": "pipe-git-updated --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 --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write",
		"test": "test/index.js"
	},
	"engines": {
		"node": ">=6.0"
	},
	"license": "ISC"
}
