-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1023 Bytes
/
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
{
"name": "@hubot-friends/sfab",
"main": "./sfab.mjs",
"bin": {
"sfab": "bin/sfab"
},
"version": "1.0.1",
"description": "Static site generator. From markdown to html with metadata and handlebars.",
"keywords": [
"static",
"site",
"generator",
"markdown",
"handlebars",
"html",
"site",
"fabricator"
],
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/hubot-friends/sfab.git"
},
"engines": {
"node": ">=20"
},
"author": "Joey Guerra",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"express": "^5.0.0-beta.1",
"handlebars": "^4.7.7",
"markdown-it": "^13.0.1",
"markdown-it-meta": "^0.0.1"
},
"scripts": {
"test": "node --test",
"start": "node bin/sfab"
},
"release": {
"branches": [
"main",
"next"
],
"dryRun": false
},
"publishConfig": {
"access": "public"
}
}