-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "medium-2-md",
"version": "0.6.2",
"preferGlobal": true,
"description": "Converts Medium posts to Jekyll/Hugo compatible markdown and adds front matter.",
"bin": {
"medium-2-md": "./index.js"
},
"author": "Gautam Dhameja <[email protected]> (https://github.com/gautamdhameja/)",
"homepage": "https://github.com/gautamdhameja/medium-2-md",
"repository": {
"type": "git",
"url": "https://github.com/gautamdhameja/medium-2-md"
},
"keywords": [
"medium",
"markdown",
"html-to-markdown",
"medium-to-jekyll",
"medium-to-hugo"
],
"license": "Apache-2.0",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"commander": "^6.2.0",
"js-yaml": "^3.14.0",
"node-fetch": "~2.6.1",
"turndown": "^7.0.0"
},
"devDependencies": {
"eslint": "^7.15.0",
"prettier": "2.2.1"
},
"scripts": {
"prettier:fix": "prettier --write .",
"prettier": "prettier --check .",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
}
}