-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.34 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
51
52
53
{
"name": "gatsby-wordpress-migrate",
"version": "1.0.6",
"description": "Simple Node Script for converting Wordpress XML export of Posts to Gatsby blogposts 🤟",
"main": "cli.js",
"bin": {
"wordpress2gatsby": "./cli.js"
},
"scripts": {
"test": "jest",
"format": "prettier --trailing-comma es5 --single-quote --write '**/*.js'",
"lint": "eslint . -c .eslintrc --ext js",
" ": "semantic-release"
},
"keywords": [
"gatsby",
"wordpress",
"migrate",
"js",
"tool",
"blog"
],
"repository": {
"type": "git",
"url": "https://github.com/konsalex/gatsby-wordpress-migrate"
},
"author": "Costa Alexoglou <konsalexee@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "2.4.1",
"cheerio": "1.0.0-rc.2",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.1",
"lodash": "^4.17.11",
"moment": "2.23.0",
"node-fetch": "2.6.1",
"shortid": "^2.2.14",
"turndown": "5.0.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"jest": "23.6.0",
"prettier": "^1.15.3",
"semantic-release": "^15.13.24"
}
}