xml-urls 2.1.55 → 2.1.57
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.
- package/README.md +1 -1
- package/package.json +18 -15
package/README.md
CHANGED
|
@@ -72,4 +72,4 @@ See [matcher](https://github.com/sindresorhus/matcher#matcher-= for know more.
|
|
|
72
72
|
**xml-urls** © [Kiko Beats](https://kikobeats.com), released under the [MIT](https://github.com/Kikobeats/xml-urls/blob/master/LICENSE.md) License.<br>
|
|
73
73
|
Authored and maintained by Kiko Beats with help from [contributors](https://github.com/Kikobeats/xml-urls/contributors).
|
|
74
74
|
|
|
75
|
-
> [kikobeats.com](https://kikobeats.com) · GitHub [@Kiko Beats](https://github.com/Kikobeats) ·
|
|
75
|
+
> [kikobeats.com](https://kikobeats.com) · GitHub [@Kiko Beats](https://github.com/Kikobeats) · X [@Kikobeats](https://x.com/Kikobeats)
|
package/package.json
CHANGED
|
@@ -2,13 +2,14 @@
|
|
|
2
2
|
"name": "xml-urls",
|
|
3
3
|
"description": "Get all urls from a Feed/Atom/RSS/Sitemap xml markup.",
|
|
4
4
|
"homepage": "https://github.com/Kikobeats/xml-urls",
|
|
5
|
-
"version": "2.1.
|
|
5
|
+
"version": "2.1.57",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"author": {
|
|
8
8
|
"email": "josefrancisco.verdu@gmail.com",
|
|
9
9
|
"name": "Kiko Beats",
|
|
10
10
|
"url": "https://kikobeats.com"
|
|
11
11
|
},
|
|
12
|
+
"contributors": [],
|
|
12
13
|
"repository": {
|
|
13
14
|
"type": "git",
|
|
14
15
|
"url": "git+https://github.com/Kikobeats/xml-urls.git"
|
|
@@ -24,10 +25,10 @@
|
|
|
24
25
|
"xml"
|
|
25
26
|
],
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"@metascraper/helpers": "~5.45.
|
|
28
|
+
"@metascraper/helpers": "~5.45.22",
|
|
28
29
|
"aigle": "~1.14.1",
|
|
29
|
-
"cheerio": "~1.0.0
|
|
30
|
-
"html-get": "~2.
|
|
30
|
+
"cheerio": "~1.0.0",
|
|
31
|
+
"html-get": "~2.18.0",
|
|
31
32
|
"lodash": "~4.17.21",
|
|
32
33
|
"matcher": "~4.0.0"
|
|
33
34
|
},
|
|
@@ -39,11 +40,10 @@
|
|
|
39
40
|
"browserless": "latest",
|
|
40
41
|
"c8": "latest",
|
|
41
42
|
"ci-publish": "latest",
|
|
42
|
-
"conventional-github-releaser": "latest",
|
|
43
43
|
"finepack": "latest",
|
|
44
44
|
"git-authors-cli": "latest",
|
|
45
|
+
"github-generate-release": "latest",
|
|
45
46
|
"nano-staged": "latest",
|
|
46
|
-
"npm-check-updates": "latest",
|
|
47
47
|
"puppeteer": "latest",
|
|
48
48
|
"signal-exit": "latest",
|
|
49
49
|
"simple-git-hooks": "latest",
|
|
@@ -59,18 +59,16 @@
|
|
|
59
59
|
],
|
|
60
60
|
"scripts": {
|
|
61
61
|
"clean": "rm -rf node_modules",
|
|
62
|
-
"contributors": "(npx git-authors-cli && npx finepack
|
|
62
|
+
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
63
63
|
"lint": "standard-markdown README.md && standard",
|
|
64
64
|
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
|
|
65
|
-
"prerelease": "npm run
|
|
65
|
+
"prerelease": "npm run contributors",
|
|
66
66
|
"pretest": "npm run lint",
|
|
67
67
|
"pretty": "prettier-standard index.js {core,test,bin}/**/*.js --single-quote",
|
|
68
68
|
"release": "standard-version -a",
|
|
69
|
-
"release:github": "
|
|
69
|
+
"release:github": "github-generate-release",
|
|
70
70
|
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
71
|
-
"test": "c8 ava"
|
|
72
|
-
"update": "ncu -u",
|
|
73
|
-
"update:check": "ncu -- --error-level 2"
|
|
71
|
+
"test": "c8 ava"
|
|
74
72
|
},
|
|
75
73
|
"license": "MIT",
|
|
76
74
|
"ava": {
|
|
@@ -83,15 +81,20 @@
|
|
|
83
81
|
"commitlint": {
|
|
84
82
|
"extends": [
|
|
85
83
|
"@commitlint/config-conventional"
|
|
86
|
-
]
|
|
84
|
+
],
|
|
85
|
+
"rules": {
|
|
86
|
+
"body-max-line-length": [
|
|
87
|
+
0
|
|
88
|
+
]
|
|
89
|
+
}
|
|
87
90
|
},
|
|
88
91
|
"nano-staged": {
|
|
89
|
-
"*.js
|
|
92
|
+
"*.js": [
|
|
90
93
|
"prettier-standard",
|
|
91
94
|
"standard --fix"
|
|
92
95
|
],
|
|
93
96
|
"package.json": [
|
|
94
|
-
"finepack
|
|
97
|
+
"finepack"
|
|
95
98
|
]
|
|
96
99
|
},
|
|
97
100
|
"simple-git-hooks": {
|