xml-urls 2.1.25 → 2.1.26

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 -13
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.26",
6
6
  "main": "index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -24,11 +24,12 @@
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",
@@ -40,7 +41,7 @@
40
41
  "finepack": "latest",
41
42
  "git-authors-cli": "latest",
42
43
  "git-dirty": "latest",
43
- "lint-staged": "latest",
44
+ "nano-staged": "latest",
44
45
  "npm-check-updates": "latest",
45
46
  "nyc": "latest",
46
47
  "prettier-standard": "latest",
@@ -59,7 +60,7 @@
59
60
  ],
60
61
  "scripts": {
61
62
  "clean": "rm -rf node_modules",
62
- "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
63
+ "contributors": "(git-authors-cli && finepack --sort-ignore-object-at ava && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
63
64
  "lint": "standard-markdown README.md && standard",
64
65
  "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
65
66
  "prerelease": "npm run update:check && npm run contributors",
@@ -75,8 +76,8 @@
75
76
  "license": "MIT",
76
77
  "ava": {
77
78
  "files": [
78
- "!test/util.js",
79
- "test/**/*"
79
+ "test/**/*",
80
+ "!test/util.js"
80
81
  ]
81
82
  },
82
83
  "commitlint": {
@@ -84,16 +85,16 @@
84
85
  "@commitlint/config-conventional"
85
86
  ]
86
87
  },
87
- "lint-staged": {
88
- "package.json": [
89
- "finepack --sort-ignore-object-at ava"
90
- ],
88
+ "nano-staged": {
91
89
  "*.js": [
92
90
  "prettier-standard"
91
+ ],
92
+ "package.json": [
93
+ "finepack --sort-ignore-object-at ava"
93
94
  ]
94
95
  },
95
96
  "simple-git-hooks": {
96
97
  "commit-msg": "npx commitlint --edit",
97
- "pre-commit": "npx lint-staged"
98
+ "pre-commit": "npx nano-staged"
98
99
  }
99
100
  }