{
	"name": "dokkie",
	"version": "0.1.34",
	"description": "Create good looking documentation from your Readme",
	"main": "dist/index.js",
	"bin": "dist/index.js",
	"repository": {
		"type": "git",
		"url": "https://github.com/silvandiepen/dokkie.git"
	},
	"scripts": {
		"build": "tsc",
		"build:dev": "tsc -w",
		"serve": "serve -l 5555 dokkie",
		"build:docs": "npm run build && node dist/index.js --output=dokkie/docs --config=config/docs.config.json",
		"build:blog": "npm run build && node dist/index.js --output=dokkie/blog --skip=favicons --config=config/blog.config.json --logo=src/assets/logo_dokkie-color.svg --favicon=src/assets/logo_dokkie-icon-color.png --logging=debug",
		"build:website": "npm run build && node dist/index.js --output=dokkie/website --config=config/website.config.json",
		"dev:debug": "npm run build && node dist/index.js --config=config/dokkie.config.json ",
		"dev:docs": "npm run build:docs && npx serve dokkie/docs -l 3030",
		"dev:blog": "npm run build:blog && npx serve dokkie/blog -l 4040",
		"dev:website": "npm run build:website && npx serve dokkie/website -l 5050",
		"pre": "npm run build && npm run test",
		"prepublishOnly": "npm run pre",
		"test": "npm run build && npm run test:unit  && npm run test:runs",
		"test:runs": "npm run build:docs && npm run build:blog && npm run build:website",
		"test:unit": "jest --verbose",
		"test:markdown": "jest markdown.spec.ts --watch",
		"pretest:unit": "node dist/test/clean.js",
		"lint": "tslint --project tsconfig.json",
		"lint:fix": "tslint --project tsconfig.json --fix"
	},
	"keywords": [
		"Documentation",
		"Create",
		"Markdown"
	],
	"husky": {
		"hooks": {
			"pre-commit": "npm run pre"
		}
	},
	"author": "Sil van Diepen",
	"license": "MIT",
	"devDependencies": {
		"@types/favicons": "^5.5.0",
		"@types/jest": "^26.0.13",
		"@types/markdown-it": "^10.0.2",
		"@types/mkdirp": "^1.0.1",
		"@types/node-fetch": "^2.5.7",
		"@types/rimraf": "^3.0.0",
		"husky": "^4.2.5",
		"jest": "^26.4.2",
		"serve": "^11.3.2",
		"ts-jest": "^26.3.0",
		"tslint": "^6.1.3",
		"typescript": "^4.0.2"
	},
	"dependencies": {
		"@types/markdown-it-anchor": "^4.0.4",
		"canvas": "^2.6.1",
		"canvas-to-buffer": "^1.1.0",
		"cli-block": "^1.1.7",
		"date-fns": "^2.16.1",
		"handlebars": "^4.7.6",
		"iconator": "^0.1.17",
		"markdown-it": "^11.0.0",
		"markdown-it-abbr": "^1.0.4",
		"markdown-it-alert": "^0.1.3",
		"markdown-it-anchor": "^5.3.0",
		"markdown-it-deflist": "^2.0.3",
		"markdown-it-emoji": "^1.4.0",
		"markdown-it-footnote": "^3.0.2",
		"markdown-it-html5-media": "^0.6.0",
		"markdown-it-multimd-table": "^4.0.3",
		"markdown-it-prism": "^2.1.1",
		"markdown-it-task-lists": "^2.1.1",
		"ncp": "^2.0.0",
		"node-fetch": "^2.6.0",
		"prettier": "^2.1.1",
		"purgecss": "^2.3.0",
		"rimraf": "^3.0.2",
		"yargs": "^15.4.1"
	},
	"engineStrict": true,
	"engines": {
		"node": ">=12.0.0"
	}
}
