-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 914 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 914 Bytes
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
{
"name": "yaml-markdown-to-html",
"version": "11.0.4",
"description": "render a folder of markdown files with yaml front matter to html",
"type": "module",
"module": "index.js",
"bin": "bin/cli.js",
"author": "Maximilian Hoffmann",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://maxhoffmann@github.com/maxhoffmann/yaml-markdown-to-html"
},
"homepage": "https://github.com/maxhoffmann/yaml-markdown-to-html",
"scripts": {
"test": "tape 'test/**/*.js' | tap-spec",
"build": "bin/cli test/content dist test/render"
},
"dependencies": {
"chalk": "^5.1.2",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"lodash.clonedeep": "^4.5.0",
"yaml-front-matter": "^4.1.1"
},
"keywords": [
"markdown",
"yaml",
"front matter",
"html",
"render"
],
"devDependencies": {
"tap-spec": "^5.0.0",
"tape": "^5.6.1"
}
}