mdpdf
Version:
Markdown to PDF command line converter
57 lines (56 loc) • 1.39 kB
JSON
{
"name": "mdpdf",
"version": "3.0.4",
"description": "Markdown to PDF command line converter",
"type": "module",
"main": "./src/index.js",
"scripts": {
"lint": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js'",
"lint-fix": "prettier --trailing-comma es5 --single-quote --list-different '{src,tests,bin}/**/*.js' --write",
"test": "mocha ./tests/index.js"
},
"bin": {
"mdpdf": "bin/index.js"
},
"files": [
"bin",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bluehatbrit/mdpdf.git"
},
"keywords": [
"markdown",
"md",
"pdf",
"converter"
],
"author": {
"name": "Elliot Blackburn",
"email": "Elliot.blackburn@gmail.com",
"url": "http://www.elliotblackburn.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bluehatbrit/mdpdf/issues"
},
"homepage": "https://github.com/bluehatbrit/mdpdf#readme",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"file-url": "^4.0.0",
"handlebars": "^4.7.8",
"loophole": "^1.1.0",
"meow": "^13.0.0",
"prettier": "^3.1.1",
"puppeteer": "^22.15.0",
"showdown": "^2.1.0",
"showdown-emoji": "^3.0.0",
"showdown-highlight": "^3.1.0"
},
"devDependencies": {
"execa": "^8.0.1",
"mocha": "^10.2.0",
"should": "^13.2.3"
}
}