@semantic-release/release-notes-generator 12.1.0 → 13.0.0
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/package.json +38 -18
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semantic-release/release-notes-generator",
|
|
3
3
|
"description": "semantic-release plugin to generate changelog content with conventional-changelog",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "13.0.0",
|
|
5
5
|
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/semantic-release/release-notes-generator/issues"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"read-pkg-up": "^11.0.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"ava": "
|
|
27
|
-
"c8": "
|
|
26
|
+
"ava": "6.1.2",
|
|
27
|
+
"c8": "9.1.0",
|
|
28
28
|
"conventional-changelog-atom": "4.0.0",
|
|
29
29
|
"conventional-changelog-conventionalcommits": "7.0.2",
|
|
30
30
|
"conventional-changelog-ember": "4.0.0",
|
|
@@ -32,16 +32,20 @@
|
|
|
32
32
|
"conventional-changelog-express": "4.0.0",
|
|
33
33
|
"conventional-changelog-jshint": "4.0.0",
|
|
34
34
|
"escape-string-regexp": "5.0.0",
|
|
35
|
-
"fs-extra": "11.
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
35
|
+
"fs-extra": "11.2.0",
|
|
36
|
+
"lockfile-lint": "4.13.2",
|
|
37
|
+
"ls-engines": "0.9.1",
|
|
38
|
+
"npm-run-all2": "6.1.2",
|
|
39
|
+
"prettier": "3.2.5",
|
|
40
|
+
"publint": "0.2.7",
|
|
41
|
+
"semantic-release": "23.0.2",
|
|
42
|
+
"sinon": "17.0.1",
|
|
39
43
|
"stream-buffers": "3.0.2",
|
|
40
44
|
"tempy": "3.1.0",
|
|
41
|
-
"testdouble": "3.20.
|
|
45
|
+
"testdouble": "3.20.2"
|
|
42
46
|
},
|
|
43
47
|
"engines": {
|
|
44
|
-
"node": "
|
|
48
|
+
"node": ">=20.8.1"
|
|
45
49
|
},
|
|
46
50
|
"files": [
|
|
47
51
|
"lib",
|
|
@@ -60,7 +64,8 @@
|
|
|
60
64
|
"semantic-release"
|
|
61
65
|
],
|
|
62
66
|
"license": "MIT",
|
|
63
|
-
"main": "index.js",
|
|
67
|
+
"main": "./index.js",
|
|
68
|
+
"exports": "./index.js",
|
|
64
69
|
"c8": {
|
|
65
70
|
"include": [
|
|
66
71
|
"lib/**/*.js",
|
|
@@ -76,6 +81,14 @@
|
|
|
76
81
|
"peerDependencies": {
|
|
77
82
|
"semantic-release": ">=20.1.0"
|
|
78
83
|
},
|
|
84
|
+
"lockfile-lint": {
|
|
85
|
+
"path": "package-lock.json",
|
|
86
|
+
"type": "npm",
|
|
87
|
+
"validate-https": true,
|
|
88
|
+
"allowed-hosts": [
|
|
89
|
+
"npm"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
79
92
|
"prettier": {
|
|
80
93
|
"printWidth": 120,
|
|
81
94
|
"trailingComma": "es5"
|
|
@@ -89,15 +102,21 @@
|
|
|
89
102
|
"url": "https://github.com/semantic-release/release-notes-generator.git"
|
|
90
103
|
},
|
|
91
104
|
"scripts": {
|
|
92
|
-
"lint": "prettier --check \"
|
|
93
|
-
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"test
|
|
105
|
+
"lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"",
|
|
106
|
+
"lint:prettier:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/**/*.js\"",
|
|
107
|
+
"lint:lockfile": "lockfile-lint",
|
|
108
|
+
"lint:engines": "ls-engines",
|
|
109
|
+
"lint:publish": "publint --strict",
|
|
110
|
+
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
|
|
111
|
+
"test:unit": "c8 ava --verbose",
|
|
112
|
+
"test:integration": "ava --verbose test/integration.test.js"
|
|
98
113
|
},
|
|
99
114
|
"type": "module",
|
|
100
115
|
"ava": {
|
|
116
|
+
"files": [
|
|
117
|
+
"test/**/*.test.js",
|
|
118
|
+
"!test/integration.test.js"
|
|
119
|
+
],
|
|
101
120
|
"nodeArguments": [
|
|
102
121
|
"--loader=testdouble",
|
|
103
122
|
"--no-warnings"
|
|
@@ -105,7 +124,8 @@
|
|
|
105
124
|
},
|
|
106
125
|
"renovate": {
|
|
107
126
|
"extends": [
|
|
108
|
-
"github>semantic-release/.github"
|
|
127
|
+
"github>semantic-release/.github:renovate-config"
|
|
109
128
|
]
|
|
110
|
-
}
|
|
129
|
+
},
|
|
130
|
+
"packageManager": "npm@10.5.0+sha256.17ca6e08e7633b624e8f870db81a78f46afe119de62bcaf0a7407574139198fc"
|
|
111
131
|
}
|