md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
60 lines (59 loc) • 1.68 kB
JSON
{
"name": "md-toy-blog",
"version": "2.5.0",
"description": "Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.",
"main": "build/src/index.js",
"scripts": {
"test": "tsc && mocha --recursive ./build/test",
"dev": "tsc -w",
"start": "nodemon ./build/src/index.js",
"serve": "tsc && NODE_ENV=production node ./build/src/index.js",
"build": "tsc && node ./build/src/compile.js",
"build:clean": "rm -fR ./build"
},
"repository": {
"type": "git",
"url": "https://github.com/gbili/md-toy-blog.git"
},
"keywords": [
"nodejs",
"templating",
"moustache",
"simple",
"minimal"
],
"author": "Guillermo Pages <mail@guillermo.at> (https://guillermo.at)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gbili/md-toy-blog/issues"
},
"homepage": "https://github.com/gbili/md-toy-blog#readme",
"devDependencies": {
"@types/mime-types": "2.1.0",
"@types/recursive-readdir": "2.2.0",
"@types/showdown": "1.9.3"
},
"dependencies": {
"@types/chai": "4.2.9",
"@types/chai-as-promised": "7.1.2",
"@types/express-serve-static-core": "4.17.2",
"@types/mocha": "7.0.1",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"di-why": "0.15.10",
"dotenv": "^8.0.0",
"front-matter": "4.0.2",
"mime-types": "2.1.27",
"mocha": "7.1.2",
"mostachito": "1.2.0",
"nodemon": "latest",
"recursive-readdir": "2.2.2",
"saylo": "0.5.0",
"server-handle-signals": "1.0.1",
"showdown": "1.9.1",
"showdown-highlight": "2.1.4"
},
"directories": {
"test": "test"
}
}