-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.4 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
{
"name": "blogophon",
"version": "3.0.1",
"description": "A Static Site Generator supporting Markdown, responsive images, RSS and other RESTable files. Built with Node.js and minimal dependencies.",
"main": "./bin/blogophon.js",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:fboes/blogophon.git"
},
"scripts": {
"start": "node ./bin/blogophon.js",
"generate": "node ./bin/blogophon-generate.js",
"precommit": "npm run test-js && npm run test-css",
"test": "npm run test-js && npm run test-css && npm outdated",
"test-js": "npx eslint *.js bin/* lib/**/*.js test/**/*.js && npx mocha",
"test-css": "npx stylelint htdocs/**/*.scss",
"prepare": "husky install"
},
"bin": {
"blogophon": "./bin/blogophon.js",
"blogophon-generate": "./bin/blogophon-generate.js"
},
"homepage": "https://github.com/fboes/blogophon",
"bugs": {
"url": "https://github.com/fboes/blogophon/issues",
"email": "[email protected]"
},
"author": "Frank Boës <[email protected]> (https://3960.org/)",
"preferGlobal": true,
"keywords": [
"blog",
"markdown",
"mustache",
"gulp",
"static site generator"
],
"devDependencies": {
"@ronilaukkarinen/gulp-stylelint": "^14.0.5",
"autoprefixer": "^10.4.0",
"browser-sync": "^2.27.7",
"eslint": "^8.5.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"postcss": "^8.4.5",
"postcss-scss": "^4.0.2",
"sass": "^1.45.1",
"stylelint": "^14.2.0",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-recommended-scss": "^6.0.0"
},
"directories": {
"doc": "docs",
"lib": "lib",
"bin": "bin",
"test": "test",
"user": "user",
"data": "user/posts",
"htdocs": "htdocs",
"theme": "htdocs/themes"
},
"license": "MIT",
"dependencies": {
"dateformat": "^5.0.2",
"esm": "^3.2.25",
"fs-extra-promise": "^1.0.1",
"glob": "^8.0.3",
"gm": "^1.23.1",
"handlebars": "^4.7.7",
"inquirer": "^8.0.0",
"inquirer-datepicker-prompt": "^0.4.2",
"js-yaml": "^4.0.0",
"marked": "^4.0.10",
"shelljs": "^0.8.4"
},
"engine": {
"node": ">=14"
},
"browserslist": [
"cover 97%"
]
}