-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"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 <[email protected]>",
"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"
}
}