forked from joakimbeng/get-hrefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 913 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": "get-hrefs",
"version": "1.0.3",
"description": "Get all href urls from an HTML string",
"main": "src/index.js",
"scripts": {
"test": "xo && ava"
},
"bin": "bin/get-hrefs",
"repository": {
"type": "git",
"url": "git+https://github.com/joakimbeng/get-hrefs.git"
},
"keywords": [
"html",
"find",
"extract",
"links",
"urls",
"href",
"hrefs",
"get",
"string"
],
"author": "Joakim Carlstein <[email protected]> (http://joakim.beng.se/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joakimbeng/get-hrefs/issues"
},
"homepage": "https://github.com/joakimbeng/get-hrefs#readme",
"devDependencies": {
"ava": "^0.9.1",
"xo": "^0.12.1"
},
"dependencies": {
"array-uniq": "^1.0.2",
"cheerio": "^0.19.0",
"get-stdin": "^5.0.1",
"meow": "^3.7.0",
"normalize-url": "^1.4.0"
}
}