-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "markdown-plain-link-replacer",
"version": "1.1.16",
"description": "Script to replace a text link (ie http://whatever) with the title at the links webpage in markdown.",
"main": "./index.js",
"scripts": {
"test": "snyk test && xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"travis-after-success": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/m4bwav/markdown-plain-link-replacer.git"
},
"homepage": "https://github.com/m4bwav/markdown-plain-link-replacer",
"bugs": {
"url": "http://github.com/m4bwav/markdown-plain-link-replacer/issues"
},
"author": "Mark Rogers",
"keywords": [
"markup",
"html",
"source",
"title",
"markdown"
],
"tags": [
"markup",
"html",
"source",
"title",
"markdown"
],
"bin": "cli.js",
"files": [
"index.js",
"cli.js",
"lib"
],
"license": "MIT",
"dependencies": {
"array-iterate": "^1.1.0",
"bluebird": "~3.5.0",
"debug": "^3.1.0",
"get-title-at-url": "^1.1.6",
"he": "1.1.1",
"hogan.js": "3.0.2",
"is-an-image-url": "^1.0.3",
"is-url": "1.2.4",
"meow": "3.7.0",
"parse-domain": "0.2.1",
"replace-string-at-position": "^1.0.4",
"url-regex": "^4.1.1"
},
"devDependencies": {
"ava": "^0.19.1",
"execa": "^0.6.3",
"coveralls": "^2.11.9",
"codecov.io": "^0.1.6",
"nyc": "^10.2.0",
"xo": "^0.18.1",
"snyk": "^1.29.0"
},
"xo": {
"rules": {
"xo/no-process-exit": "off",
"linebreak-style": "off",
"indent": [
"error",
2
]
}
}
}