-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 916 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": "medium-markdown",
"version": "0.2.0",
"description": "A package to convert HTML to Markdown, specifically for Medium posts.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neilkakkar/markdownConverter.git"
},
"author": "Neil Kakkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/neilkakkar/markdownConverter/issues"
},
"homepage": "https://github.com/neilkakkar/markdownConverter#readme",
"keywords": [
"medium",
"converter",
"html",
"markdown",
"jekyll",
"blog",
"post"
],
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.88.0",
"turndown": "^5.0.1"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}