md-fileserver
Version:
Locally view markdown files in a browser
108 lines • 3.01 kB
JSON
{
"name": "md-fileserver",
"version": "1.10.2",
"description": "Locally view markdown files in a browser",
"keywords": [
"fileserver",
"markdown",
"server"
],
"homepage": "https://github.com/commenthol/md-fileserver",
"bugs": {
"url": "http://github.com/commenthol/md-fileserver/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/md-fileserver.git"
},
"license": "MIT",
"author": "commenthol",
"main": "lib/index.js",
"bin": {
"mdstart": "bin/mdstart.js"
},
"man": "./man/mdstart.1",
"files": [
"bin",
"lib",
"man",
"assets",
"config.js",
"test/cheatsheet.md",
"test/cnfl.md",
"test/path_to"
],
"mocha": {
"exit": true
},
"dependencies": {
"@commenthol/markdown-it-katex": "^2.0.8",
"asyncc": "^2.0.7",
"body-parser": "^1.20.3",
"confluencer": "^1.5.2",
"cookie": "^1.0.2",
"express": "^4.21.2",
"highlight.js": "^11.11.1",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-admon": "^1.0.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "~4.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlightjs": "^4.2.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-multimd-table": "^4.2.3",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markedpp": "^1.4.0",
"serve-index": "^1.9.1",
"serve-static": "^1.16.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"katex": "^0.16.19",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^11.0.1",
"normalize.css": "^8.0.1",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"engine": {
"node": ">=10.0.0"
},
"scripts": {
"all": "npm-run-all clean lint build test",
"ci": "npm run all",
"build": "webpack --mode production",
"clean": "rimraf assets/* coverage *.tgz",
"coverage": "c8 -r html -r text npm test",
"dev": "webpack -w",
"lint": "eslint",
"man": "marked-man man/mdstart.md > man/mdstart.1 && man man/mdstart.1 > man/mdstart.txt",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "mocha",
"test:md": "bin/mdstart.js test/cheatsheet.md",
"test:cnfl": "bin/mdstart.js test/cnfl.md"
}
}