{
	"name": "yarn-audit-html",
	"version": "7.3.2",
	"description": "Generate a HTML report for Yarn Audit",
	"type": "module",
	"license": "MIT",
	"scripts": {
		"build": "tsc -b",
		"clean": "rm -rf ./lib/*",
		"lint": "prettier . --check",
		"lint:fix": "prettier . --write",
		"test": "NODE_ENV=test node --test --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
		"test:ci": "NODE_ENV=test c8 -r text -r json node --test --loader=ts-node/esm --loader=esmock --test-reporter spec --no-warnings=ExperimentalWarning src/*.test.ts",
		"test:watch": "NODE_ENV=test node --test --watch --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
		"test:coverage": "c8 yarn test",
		"prebuild": "yarn install --prefer-offline --frozen-lockfile && yarn clean",
		"prelint": "yarn install --prefer-offline --frozen-lockfile",
		"prelint:fix": "yarn install --prefer-offline --frozen-lockfile",
		"pretest": "yarn install --prefer-offline --frozen-lockfile",
		"pretest:watch": "yarn install --prefer-offline --frozen-lockfile",
		"pretest:coverage": "yarn install --prefer-offline --frozen-lockfile",
		"prepare": "yarn husky install"
	},
	"dependencies": {
		"commander": "^11.0.0",
		"ejs": "^3.1.9",
		"marked": "^5.1.2"
	},
	"devDependencies": {
		"@types/chai": "^4.3.5",
		"@types/ejs": "^3.1.2",
		"@types/marked": "^5.0.1",
		"@types/node": "^18.16.3",
		"@types/sinon": "^10.0.15",
		"@types/sinon-chai": "^3.2.9",
		"c8": "^8.0.1",
		"chai": "^4.3.7",
		"esmock": "^2.3.3",
		"husky": "^8.0.3",
		"lint-staged": "^13.2.3",
		"node-test-github-reporter": "^1.1.3",
		"prettier": "^3.0.0",
		"sinon": "^15.2.0",
		"sinon-chai": "^3.7.0",
		"ts-node": "^10.9.1",
		"typescript": "^5.1.6"
	},
	"optionalDependencies": {
		"@types/ejs": "^3.1.2"
	},
	"bin": {
		"yarn-audit-html": "./lib/cli.js"
	},
	"engines": {
		"node": ">=16",
		"yarn": ">=1"
	},
	"module": "./lib/index.js",
	"types": "./lib/index.d.ts",
	"keywords": [
		"yarn",
		"audit",
		"report"
	],
	"files": [
		"lib",
		"!lib/cli.d.ts",
		"!lib/types.js",
		"templates"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/davityavryan/yarn-audit-html.git"
	},
	"bugs": {
		"url": "https://github.com/davityavryan/yarn-audit-html/issues"
	},
	"funding": [
		{
			"type": "PayPal",
			"url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
		},
		{
			"type": "Buy Me A Coffee",
			"url": "https://www.buymeacoffee.com/davityavryan"
		}
	]
}
