UNPKG

@metalsmith/markdown

Version:

A Metalsmith plugin to render markdown files to HTML

83 lines (82 loc) 2.29 kB
{ "name": "@metalsmith/markdown", "version": "1.10.0", "description": "A Metalsmith plugin to render markdown files to HTML", "keywords": [ "markdown", "metalsmith", "metalsmith-plugin", "static-site" ], "homepage": "https://github.com/metalsmith/markdown#readme", "bugs": { "url": "https://github.com/metalsmith/markdown/issues" }, "repository": { "type": "git", "url": "https://github.com/metalsmith/markdown.git" }, "license": "MIT", "author": "Ian Storm Taylor (https://ianstormtaylor.com)", "maintainers": [ "Kevin Van Lierde (https://webketje.com)" ], "source": "src/index.js", "main": "lib/index.cjs", "module": "lib/index.js", "exports": { "import": "./lib/index.js", "require": "./lib/index.cjs" }, "type": "module", "types": "lib/index.d.ts", "files": [ "lib/*" ], "directories": { "lib": "lib", "test": "test" }, "scripts": { "changelog": "auto-changelog -u --sort-commits date --starting-version v1.4.0 --commit-limit false --ignore-commit-pattern '((dev|chore|ci):|skip (changelog|travis)|Release)'", "coverage": "npm test && c8 report --reporter=text-lcov > ./coverage.info", "format": "prettier --write \"**/*.{yml,md,js,json}\"", "format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"", "lint": "eslint --fix .", "lint:check": "eslint --fix-dry-run .", "release": "npm run build && release-it .", "build": "microbundle --target node -f cjs,esm --generateTypes=false", "test": "c8 mocha" }, "dependencies": { "dlv": "^1.1.3", "dset": "^3.1.2", "marked": "^4.3.0" }, "devDependencies": { "@types/markdown-it": "^12.2.3", "@types/marked": "^4.3.1", "assert-dir-equal": "^1.1.0", "auto-changelog": "^2.4.0", "c8": "^7.14.0", "eslint": "^8.42.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-n": "^16.0.0", "markdown-it": "^13.0.1", "metalsmith": "^2.6.0", "microbundle": "^0.15.1", "mocha": "^10.2.0", "prettier": "^2.8.8", "release-it": "^15.10.5" }, "peerDependencies": { "metalsmith": "^2.5.0" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=14.14.0" } }