This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GitBlog.md/package.json
T
2019-06-19 13:51:02 +02:00

37 lines
1.1 KiB
JSON

{
"nodePort": 5000,
"name": "gitblog.md",
"version": "1.0.0",
"description": "A static blog using Markdown pulled from your git repository.",
"main": "src/server.js",
"dependencies": {
"express": "^4.17.1",
"ncp": "^2.0.0",
"showdown": "^1.9.0",
"shx": "^0.3.2",
"xml": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.8.0",
"superagent": "^5.1.0",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node src/server.js",
"test": "jest",
"install": "shx mkdir ./data && shx cp -rf ./sample_data/home/* ./data && shx mkdir -p ./data/$(date +%Y)/$(date +%m)/$(date +%d) && shx cp -rf ./sample_data/article/* ./data/$(date +%Y)/$(date +%m)/$(date +%d) && shx cp -f ./src/default_config.json ./config.example.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klemek/gitblog.md.git"
},
"author": "klemek",
"license": "ISC",
"bugs": {
"url": "https://github.com/klemek/gitblog.md/issues"
},
"homepage": "https://github.com/klemek/gitblog.md#readme"
}