forked from sindresorhus/urls-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "urls-md",
"version": "3.0.0",
"description": "Convert URLs to Markdown links and images: Extracts URLs from text → Gets their article title → Creates Markdown links",
"license": "MIT",
"repository": "sindresorhus/urls-md",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"bin",
"link",
"links",
"dump",
"text",
"string",
"url",
"urls",
"convert",
"extract",
"get",
"markdown",
"md",
"article",
"title",
"img",
"image",
"images"
],
"dependencies": {
"article-title": "^1.0.0",
"get-stdin": "^5.0.1",
"get-urls": "^5.0.0",
"got": "^6.3.0",
"meow": "^3.3.0"
},
"devDependencies": {
"ava": "*",
"xo": "*"
},
"xo": {
"esnext": true
}
}