html-urls 2.4.66 → 2.4.67

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 (1) hide show
  1. package/package.json +16 -12
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "html-urls",
3
3
  "description": "Get all links from a HTML markup",
4
4
  "homepage": "https://github.com/Kikobeats/html-urls",
5
- "version": "2.4.66",
5
+ "version": "2.4.67",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "josefrancisco.verdu@gmail.com",
@@ -28,20 +28,20 @@
28
28
  "urls"
29
29
  ],
30
30
  "dependencies": {
31
- "@metascraper/helpers": "~5.47.2",
32
- "cheerio": "~1.1.0",
33
- "is-uri": "~1.2.7",
34
- "is-url-http": "~2.3.9",
35
- "lodash": "~4.17.21",
31
+ "@metascraper/helpers": "~5.50.1",
32
+ "cheerio": "~1.2.0",
33
+ "is-uri": "~1.2.14",
34
+ "is-url-http": "~2.3.13",
35
+ "lodash": "~4.18.1",
36
36
  "matcher": "~4.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@commitlint/cli": "latest",
40
40
  "@commitlint/config-conventional": "latest",
41
- "@ksmithut/prettier-standard": "latest",
42
41
  "ava": "latest",
43
42
  "c8": "latest",
44
43
  "ci-publish": "latest",
44
+ "conventional-changelog-cli": "latest",
45
45
  "finepack": "latest",
46
46
  "git-authors-cli": "latest",
47
47
  "github-generate-release": "latest",
@@ -58,14 +58,18 @@
58
58
  ],
59
59
  "scripts": {
60
60
  "clean": "rm -rf node_modules",
61
- "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
61
+ "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
62
62
  "lint": "standard",
63
- "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
63
+ "postrelease": "pnpm release:tags && pnpm release:github && (ci-publish || pnpm publish --access=public)",
64
64
  "pretest": "npm run lint",
65
65
  "pretty": "prettier-standard index.js {core,test,bin}/**/*.js --single-quote",
66
- "release": "standard-version -a",
66
+ "release": "pnpm release:version && pnpm release:changelog && pnpm release:commit && pnpm release:tag",
67
+ "release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
68
+ "release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
67
69
  "release:github": "github-generate-release",
68
- "release:tags": "git push --follow-tags origin HEAD:master",
70
+ "release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
71
+ "release:tags": "git push origin HEAD:master --follow-tags",
72
+ "release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
69
73
  "test": "c8 ava"
70
74
  },
71
75
  "license": "MIT",
@@ -87,7 +91,7 @@
87
91
  },
88
92
  "nano-staged": {
89
93
  "*.js": [
90
- "prettier-standard",
94
+ "npx @kikobeats/prettier-standard",
91
95
  "standard --fix"
92
96
  ],
93
97
  "package.json": [