txm
Version:
tool for testing code examples in Markdown files
54 lines (53 loc) • 1.15 kB
JSON
{
"name": "txm",
"version": "8.2.0",
"description": "tool for testing code examples in Markdown files",
"type": "module",
"exports": "./src/main.js",
"scripts": {
"test": "npm run-script test-docs && npm run-script test-code",
"test-code": "lsc test.ls",
"test-docs": "node src/cli.js readme.markdown",
"test-with-coverage": "c8 npm run-script test-code"
},
"bin": {
"txm": "src/cli.js"
},
"author": "Anko",
"homepage": "https://github.com/anko/txm",
"repository": {
"type": "git",
"url": "https://github.com/anko/txm"
},
"bugs": "https://github.com/anko/txm/issues",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"files": [
"src",
"readme.markdown"
],
"keywords": [
"markdown",
"test",
"example",
"readme",
"comment",
"tap"
],
"dependencies": {
"async": "^3.2.1",
"diff-match-patch": "^1.0.5",
"kleur": "^4.1.4",
"remark-parse": "^10.0.1",
"supports-color": "^9.1.0",
"unified": "^10.1.1"
},
"devDependencies": {
"c8": "^8.0.0",
"livescript": "^1.6.0",
"tape": "^5.3.1",
"tmp": "^0.2.1"
}
}