-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 837 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 837 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
{
"name": "contentful2md",
"version": "1.0.3",
"description": "Fetch entries from a Contentful space and write them as Markdown files",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsferruzza/contentful2md.git"
},
"keywords": [
"contentful",
"yaml",
"markdown",
"jekyll"
],
"author": "David Sferruzza <david.sferruzza@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsferruzza/contentful2md/issues"
},
"homepage": "https://github.com/dsferruzza/contentful2md#readme",
"dependencies": {
"common-env": "^6.4.0",
"contentful": "^8.3.1",
"js-yaml": "^4.1.0",
"mkdirp": "^1.0.4"
},
"bin": {
"contentful2md": "./index.js"
}
}