forked from Matt-Jensen/contentful-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "contentful-hugo",
"version": "1.3.12",
"description": "Node module that pulls data from Contentful and turns it into markdown files for Hugo. Can be used with other Static Site Generators, but has some Hugo specific features.",
"main": "index.js",
"repository": {
"typ": "git",
"url": "https://github.com/ModiiMedia/contentful-hugo"
},
"keywords": [
"hugo",
"contentful",
"blog",
"markdown",
"yaml",
"ssg",
"website",
"static-site-generator",
"jamstack",
"frontmatter",
"static-site"
],
"author": {
"name": "Joshua Sosso",
"email": "josh@modiimedia.com",
"url": "https://www.modiimedia.com"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"dependencies": {
"@contentful/rich-text-plain-text-renderer": "^13.4.0",
"contentful": "^7.9.1",
"dotenv": "^7.0.0",
"js-yaml": "^3.13.1",
"json-to-pretty-yaml": "^1.2.2",
"mkdirp": "^0.5.1"
},
"bin": {
"contentful-hugo": "./cli.js"
},
"files": [
"cli.js",
"images",
"readme.md",
"index.js",
"src"
]
}