UNPKG

meblog

Version:

A simple blog engine for personal blogging

94 lines (93 loc) 2.81 kB
{ "name": "meblog", "version": "2.2.3", "description": "A simple blog engine for personal blogging", "main": "./lib/cli/index.js", "bin": { "meblog": "./bin/meblog" }, "scripts": { "clean": "rm -rf ./lib", "build": "rm -rf ./lib & tsc && cp -r ./src/sample ./lib", "test": "npx mocha --require ts-node/register \"./test/**/*.test.@(js|ts)\"", "fm": "npx prettier --write ." }, "author": "Thang X. Vu <zthangxv@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/sinzii/meblog.git" }, "files": [ "/bin", "/lib", "/templates" ], "keywords": [ "static-site-generator", "blog-engine", "diy" ], "devDependencies": { "@types/browser-sync": "^2.26.1", "@types/chai": "^4.2.18", "@types/debug": "^4.1.5", "@types/faker": "^5.5.5", "@types/gulp": "^4.0.8", "@types/i18n": "^0.13.0", "@types/lodash": "^4.14.170", "@types/markdown-it": "^12.0.1", "@types/markdown-it-emoji": "^2.0.1", "@types/mocha": "^8.2.2", "@types/moment": "^2.13.0", "@types/sinon": "^10.0.1", "@types/through2": "^2.0.36", "@types/yargs": "^17.0.0", "@typescript-eslint/eslint-plugin": "^4.26.0", "@typescript-eslint/parser": "^4.26.0", "chai": "*", "eslint": "^7.27.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "mocha": "^8.4.0", "prettier": "^2.3.0", "sinon": "^10.0.0", "ts-node": "^9.1.1", "typescript": "^4.3.2" }, "dependencies": { "ansi-colors": "^4.1.1", "browser-sync": "^2.26.14", "del": "^6.0.0", "emittery": "^0.9.2", "faker": "^5.5.3", "fancy-log": "^1.3.3", "glob": "^7.1.7", "gulp": "^4.0.2", "gulp-autoprefixer": "^7.0.1", "gulp-clean-css": "^4.3.0", "gulp-plumber": "^1.2.1", "gulp-sass": "^4.1.0", "gulp-sourcemaps": "^3.0.0", "gulplog": "^1.0.0", "highlight.js": "^10.7.2", "i18n": "^0.13.3", "lodash": "^4.17.21", "markdown-it": "^12.0.6", "markdown-it-abbr": "^1.0.4", "markdown-it-emoji": "^2.0.0", "markdown-it-footnote": "^3.0.3", "markdown-it-sub": "^1.0.0", "markdown-it-sup": "^1.0.0", "minimist": "^1.2.5", "moment": "^2.29.1", "moment-timezone": "^0.5.33", "plugin-error": "^1.0.1", "pug": "^3.0.2", "through2": "^4.0.2", "tslib": "^2.2.0", "twemoji": "^13.1.0", "vinyl": "^2.2.1", "yargs": "^17.0.1" } }