xml-urls 2.1.25 → 2.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Coverage Status](https://img.shields.io/coveralls/Kikobeats/xml-urls.svg?style=flat-square)](https://coveralls.io/github/Kikobeats/xml-urls)
5
5
  [![NPM Status](https://img.shields.io/npm/dm/xml-urls.svg?style=flat-square)](https://www.npmjs.org/package/xml-urls)
6
6
 
7
- > Get all urls from a Feed/Atom/RSS/Sitemap xml markup.
7
+ > Get all URLs detected inside a Feed/Atom/RSS/Sitemap xml markup.
8
8
 
9
9
  ## Install
10
10
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "xml-urls",
3
3
  "description": "Get all urls from a Feed/Atom/RSS/Sitemap xml markup.",
4
4
  "homepage": "https://nicedoc.io/Kikobeats/xml-urls",
5
- "version": "2.1.25",
5
+ "version": "2.1.28",
6
6
  "main": "index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -24,28 +24,28 @@
24
24
  "xml"
25
25
  ],
26
26
  "dependencies": {
27
- "@metascraper/helpers": "~5.22.5",
27
+ "@metascraper/helpers": "~5.25.7",
28
28
  "aigle": "~1.14.1",
29
29
  "cheerio": "~1.0.0-rc.10",
30
- "html-get": "~2.9.0",
31
- "lodash": "~4.17.21"
30
+ "html-get": "~2.9.8",
31
+ "lodash": "~4.17.21",
32
+ "matcher": "~4.0.0"
32
33
  },
33
34
  "devDependencies": {
34
35
  "@commitlint/cli": "latest",
35
36
  "@commitlint/config-conventional": "latest",
36
37
  "ava": "latest",
37
38
  "browserless": "latest",
39
+ "c8": "latest",
38
40
  "ci-publish": "latest",
39
41
  "conventional-github-releaser": "latest",
42
+ "exit-hook": "2",
40
43
  "finepack": "latest",
41
44
  "git-authors-cli": "latest",
42
- "git-dirty": "latest",
43
- "lint-staged": "latest",
45
+ "nano-staged": "latest",
44
46
  "npm-check-updates": "latest",
45
- "nyc": "latest",
46
47
  "prettier-standard": "latest",
47
48
  "puppeteer": "latest",
48
- "signal-exit": "latest",
49
49
  "simple-git-hooks": "latest",
50
50
  "standard": "latest",
51
51
  "standard-markdown": "latest",
@@ -68,7 +68,7 @@
68
68
  "release": "standard-version -a",
69
69
  "release:github": "conventional-github-releaser -p angular",
70
70
  "release:tags": "git push --follow-tags origin HEAD:master",
71
- "test": "nyc ava",
71
+ "test": "c8 ava",
72
72
  "update": "ncu -u",
73
73
  "update:check": "ncu -- --error-level 2"
74
74
  },
@@ -84,16 +84,16 @@
84
84
  "@commitlint/config-conventional"
85
85
  ]
86
86
  },
87
- "lint-staged": {
88
- "package.json": [
89
- "finepack --sort-ignore-object-at ava"
90
- ],
87
+ "nano-staged": {
91
88
  "*.js": [
92
89
  "prettier-standard"
90
+ ],
91
+ "package.json": [
92
+ "finepack --sort-ignore-object-at ava"
93
93
  ]
94
94
  },
95
95
  "simple-git-hooks": {
96
96
  "commit-msg": "npx commitlint --edit",
97
- "pre-commit": "npx lint-staged"
97
+ "pre-commit": "npx nano-staged"
98
98
  }
99
99
  }