forked from lonekorean/wordpress-export-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 651 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 651 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
{
"name": "wordpress-export-to-markdown",
"version": "1.0.2",
"description": "Converts a WordPress export XML file into Markdown files.",
"main": "index.js",
"repository": "https://github.com/obedparla/wordpress-export-to-markdown",
"keywords": [
"wordpress",
"markdown",
"export"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Obed Parlapiano (https://obedparla.com)",
"license": "MIT",
"engines": {
"node": ">= 10.12.0"
},
"dependencies": {
"luxon": "^1.4.3",
"minimist": "^1.2.0",
"request": "^2.88.0",
"smartquotes": "^2.3.1",
"turndown": "^5.0.1",
"xml2js": "^0.4.19"
}
}