{
	"name": "typedoc-plugin-versions",
	"version": "0.2.4",
	"description": "It keeps track of your document builds and provides a select menu for versions",
	"main": "src/index",
	"scripts": {
		"test": "prettier -c . && nyc mocha",
		"build": "npx tsc && node ./build.js",
		"docs": "typedoc",
		"docs:build": "npm run build && typedoc"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/citkane/typedoc-plugin-versions.git"
	},
	"homepage": "https://github.com/citkane/typedoc-plugin-versions#readme",
	"engines": {
		"npm": ">=6.0.0",
		"node": ">=14.0.0"
	},
	"keywords": [
		"typedoc",
		"plugin",
		"typedoc-plugin",
		"versions",
		"versioning",
		"typedocplugin"
	],
	"author": "Michael Jonker",
	"contributors": [
		"Tobey Blaber (https://github.com/toebeann)"
	],
	"license": "MIT",
	"dependencies": {
		"fs-extra": "^10.1.0",
		"semver": "^7.3.7"
	},
	"devDependencies": {
		"@types/chai": "^4.3.1",
		"@types/fs-extra": "^9.0.13",
		"@types/mocha": "^9.1.1",
		"@types/node": "^18.6.2",
		"@types/prettier": "^2.7.0",
		"@types/semver": "^7.3.12",
		"@typescript-eslint/eslint-plugin": "^5.34.0",
		"@typescript-eslint/parser": "^5.34.0",
		"chai": "^4.3.6",
		"eslint": "^8.22.0",
		"eslint-config-prettier": "^8.5.0",
		"mocha": "^10.0.0",
		"nyc": "^15.1.0",
		"prettier": "^2.7.1",
		"sinon": "^14.0.0",
		"ts-node": "^10.9.1",
		"typedoc": "^0.23.28",
		"typescript": "^4.7.4"
	},
	"peerDependencies": {
		"typedoc": "^0.23"
	},
	"mocha": {
		"extension": [
			"ts"
		],
		"file": "./test/index.spec.ts",
		"require": [
			"ts-node/register/transpile-only",
			"source-map-support/register",
			"./test/hooks.ts"
		],
		"exit": true
	},
	"nyc": {
		"extension": [
			".ts",
			".tsx"
		],
		"include": [
			"src/**/*.ts"
		],
		"reporter": [
			"clover",
			"text",
			"html"
		],
		"all": true,
		"report-dir": "./test/coverage",
		"temp-dir": "./test/.nyc_output"
	}
}
