micro-mdx-parser
Version:
A tiny parser to convert markdown or html into JSON
34 lines (33 loc) • 1.04 kB
JSON
{
"name": "micro-mdx-parser",
"version": "1.1.24",
"description": "A tiny parser to convert markdown or html into JSON",
"main": "src/index.js",
"author": "David Wells",
"license": "MIT",
"keywords": [
"mdx"
],
"homepage": "https://github.com/DavidWells/micro-mdx",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidWells/micro-mdx.git"
},
"scripts": {
"test:lib": "uvu src 'index.test.([mc]js|[jt]sx?)$'",
"test:lexer": "uvu src 'lexer.test.([mc]js|[jt]sx?)$'",
"test:parser": "uvu src 'parser.test.([mc]js|[jt]sx?)$'",
"test:stringify": "uvu src 'stringify.test.([mc]js|[jt]sx?)$'",
"test": "uvu src '.test.([mc]js|[jt]sx?)$'",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"devDependencies": {
"uvu": "^0.5.1"
},
"dependencies": {
"oparser": "^3.0.22"
}
}