UNPKG

markserv

Version:

🏁 serve markdown as html (GitHub style), index directories, live-reload as you edit

123 lines (122 loc) 2.86 kB
{ "name": "markserv", "version": "1.17.4", "description": "🏁 serve markdown as html (GitHub style), index directories, live-reload as you edit", "preferGlobal": true, "scripts": { "test": "xo && npm run cover", "cover": "nyc --reporter=lcov --reporter=html --reporter=text ava", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v" }, "keywords": [ "code", "directory", "gfm", "github", "github flavored markdown", "highlighting", "html", "include", "index", "indexes", "links", "live", "live-reload", "livereload", "markdown", "markdown-it", "marked", "markitdown", "md", "realtime", "reload", "server", "syntax highlighting", "template", "templating" ], "husky": { "hooks": { "pre-commit": "npm test" } }, "bin": { "markserv": "lib/cli.js", "readme": "lib/readme.js" }, "files": [ "lib/cli.js", "lib/cli-defs.js", "lib/cli-help.txt", "lib/readme.js", "lib/server.js", "lib/splash.js", "lib/icons", "lib/templates/directory.html", "lib/templates/markdown.html", "lib/templates/error.html", "lib/templates/github.less", "lib/templates/highlight-js-github-gist.css", "lib/templates/markserv.css", "media/markserv-favicon-96x96.png", "media/markserv-logo-term.png" ], "author": "Alistair MacDonald <al@pwn.io>", "email": "al@pwn.io", "license": "MIT", "repository": { "type": "git", "url": "http://github.com/markserv/markserv.git" }, "dependencies": { "analyze-deps": "^2.0.0", "bluebird": "^3.7.2", "chalk": "^3.0.0", "commander": "^4.0.1", "connect": "^3.7.0", "connect-livereload": "^0.6.1", "deepmerge": "^4.2.2", "emoji-regex": "^8.0.0", "handlebars": "^4.5.3", "implant": "^2.0.3", "is-online": "^8.2.1", "less": "^3.10.3", "livereload": "^0.8.2", "markdown-it": "^10.0.0", "markdown-it-anchor": "^5.2.5", "markdown-it-emoji": "^1.4.0", "markdown-it-highlightjs": "^3.0.0", "markdown-it-include": "^1.1.0", "markdown-it-mathjax": "^2.0.0", "markdown-it-table-of-contents": "^0.4.4", "markdown-it-task-lists": "^2.1.1", "meow": "^6.0.0", "micromatch": "^4.0.2", "mime": "^2.4.4", "open": "^6.0.0", "promptly": "^3.0.3", "send": "^0.17.1", "snyk": "^1.266.0", "term-img": "^4.1.0" }, "devDependencies": { "all-contributors-cli": "^6.11.2", "ava": "^2.4.0", "coveralls": "^3.0.9", "get-port": "^5.1.0", "husky": "^3.1.0", "nyc": "^15.0.0", "request": "^2.88.0", "xo": "^0.25.3" }, "xo": { "esnext": true, "semicolon": false, "rules": { "node/no-unpublished-bin": 2 } }, "ava": { "failfast": true } }