-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
package.json
40 lines (40 loc) · 914 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
{
"name": "wordpress-export-to-markdown",
"version": "2.4.0",
"description": "Converts a WordPress export XML file into Markdown files.",
"main": "index.js",
"repository": "https://github.com/lonekorean/wordpress-export-to-markdown.git",
"keywords": [
"blog",
"convert",
"export",
"markdown",
"wordpress"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Will Boyd <will@codersblock.com> (https://codersblock.com)",
"license": "MIT",
"engines": {
"node": ">= 12.14.0"
},
"dependencies": {
"axios": "^1.7.1",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"commander": "^5.0.0",
"inquirer": "^7.1.0",
"luxon": "^3.4.4",
"require-directory": "^2.1.1",
"turndown": "^7.1.2",
"turndown-plugin-gfm": "^1.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"eslint": "^6.8.0"
},
"bin": {
"wordpress-export-to-markdown": "./index.js"
}
}