forked from joakimbeng/get-hrefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.18 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
{
"name": "get-hrefs",
"version": "4.0.0",
"description": "Get all href urls from an HTML string",
"main": "src/index.js",
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"test": "xo && ava",
"release": "standard-version"
},
"bin": "bin/get-hrefs.js",
"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": {
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.2.1",
"ava": "^1.3.1",
"husky": "^1.3.1",
"prettier": "^1.16.3",
"standard-version": "^5.0.1",
"xo": "^0.24.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"get-stdin": "^6.0.0",
"meow": "^5.0.0",
"normalize-url": "^4.2.0"
},
"xo": {
"prettier": true
}
}