forked from 1000ch/reachable-urls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 914 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
39
40
41
42
{
"name": "reachable-urls",
"version": "2.0.0",
"description": "Check URLs are reachable in text",
"main": "index.js",
"scripts": {
"test": "xo && ava --verbose"
},
"bin": "cli.js",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1000ch/reachable-urls.git"
},
"author": "1000ch",
"license": "MIT",
"bugs": {
"url": "https://github.com/1000ch/reachable-urls/issues"
},
"homepage": "https://github.com/1000ch/reachable-urls#readme",
"dependencies": {
"chalk": "^4.1.0",
"get-stdin": "^8.0.0",
"globby": "^11.0.1",
"is-reachable": "^4.0.0",
"is-string": "^1.0.5",
"log-symbols": "^4.0.0",
"minimist": "^1.2.5",
"ora": "^4.0.4",
"url-parse": "^1.4.7",
"url-regex": "^5.0.0"
},
"devDependencies": {
"ava": "^3.9.0",
"xo": "^0.32.1"
},
"xo": {
"space": 2
}
}