-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 905 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-to-docusaurus",
"version": "0.0.1",
"description": "Copy Wordpress blogs to Docusaurus",
"author": "Mark Tate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mark-tate/wordpress-to-docusaurus/issues"
},
"homepage": "https://github.com/mark-tate/wordpress-to-docusaurus",
"main": "cmd.js",
"bin": {
"copy-posts": "./cli.js"
},
"scripts": {
"posts": "node ./cli.js posts",
"prettier": "prettier --write ./*.js ./*.json"
},
"repository": {
"type": "git",
"url": "https://github.com/mark-tate/wordpress-to-docusaurus.git"
},
"keywords": [
"wordpress",
"docusaurus",
"blogs",
"node",
"copy",
"script"
],
"dependencies": {
"axios": "^0.21.0",
"json-to-frontmatter-markdown": "^1.0.0",
"rxjs": "^6.6.3"
},
"devDependencies": {
"prettier": "^2.1.2",
"yargs": "^16.1.0"
}
}