-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "medium-to-own-blog",
"version": "0.4.4",
"description": "Switch from Medium to your own blog in a few minutes",
"bin": {
"medium-to-own-blog": "bin/medium-to-own-blog.js",
"parse-medium-article": "bin/import-medium-article.js"
},
"main": "index.js",
"files": [
"/gatsby-template",
"/bin",
"/lib"
],
"scripts": {
"test": "node ./bin/medium-to-own-blog.js"
},
"author": "Mathieu Dutour <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"prettier": "^1.19.1"
},
"prettier": {
"proseWrap": "never",
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"dependencies": {
"fs-extra": "^8.1.0",
"inquirer": "^7.1.0",
"jimp": "^0.9.5",
"jsdom": "^16.2.1",
"jszip": "^3.2.2",
"ora": "^4.0.3",
"request": "^2.88.2",
"slugify": "^1.4.0",
"turndown": "^6.0.0",
"xml-js": "^1.6.11"
}
}