-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1021 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
{
"name": "wordpress-gatsby-migrator",
"version": "1.0.6",
"description": "Migrate your WordPress blog to Gatsby. This tool takes a Wordpress export, and produces a local folder structure with the content and images.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "node --nolazy --inspect-brk=9229 index.js input.xml blog"
},
"bin": {
"wordpress-gatsby-migrator": "./index.js"
},
"author": {
"name": "Weiran Zhang",
"email": "weiran@zhang.me.uk",
"url": "https://weiran.co"
},
"bugs": {
"url": "https://github.com/weiran/wordpress-gatsby-migrator/issues"
},
"homepage": "https://github.com/weiran/wordpress-gatsby-migrator",
"license": "MIT",
"keywords": [
"wordpress",
"gatsby",
"markdown",
"squarespace"
],
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"davefeedread": "^0.5.9",
"fs-extra": "^8.0.1",
"minimist": "^1.2.0",
"node-fetch": "^2.6.0",
"turndown": "^5.0.1",
"uuid": "^3.3.2"
}
}