UNPKG

md-fileserver

Version:

Locally view markdown files in a browser

112 lines 3.12 kB
{ "name": "md-fileserver", "version": "1.11.0", "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.9", "body-parser": "^2.2.0", "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": "^2.0.3", "serve-index": "^1.9.1", "serve-static": "^2.2.0", "ws": "^8.18.3" }, "devDependencies": { "@babel/core": "^7.28.5", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-transform-react-jsx": "^7.27.1", "@babel/preset-env": "^7.28.5", "@babel/register": "^7.28.3", "babel-eslint": "^10.1.0", "babel-loader": "^10.0.0", "css-loader": "^7.1.2", "eslint": "^9.39.1", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "globals": "^16.5.0", "katex": "^0.16.25", "mini-css-extract-plugin": "^2.9.4", "mocha": "^11.7.5", "normalize.css": "^8.0.1", "npm-run-all2": "^8.0.4", "rimraf": "^6.1.0", "style-loader": "^4.0.0", "supertest": "^7.1.4", "webpack": "^5.102.1", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.2" }, "engine": { "node": ">=10.0.0" }, "c4uIgnore": { "markdown-it-attrs": "4.2.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", "test:exf": "bin/mdstart.js test/exfiltrate.md" } }