1 | {
|
2 | "name": "@semantic-release/release-notes-generator",
|
3 | "description": "semantic-release plugin to generate changelog content with conventional-changelog",
|
4 | "version": "14.0.1",
|
5 | "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
|
6 | "bugs": {
|
7 | "url": "https://github.com/semantic-release/release-notes-generator/issues"
|
8 | },
|
9 | "contributors": [
|
10 | "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
|
11 | "Gregor Martynus (https://twitter.com/gr2m)"
|
12 | ],
|
13 | "dependencies": {
|
14 | "conventional-changelog-angular": "^8.0.0",
|
15 | "conventional-changelog-writer": "^8.0.0",
|
16 | "conventional-commits-filter": "^5.0.0",
|
17 | "conventional-commits-parser": "^6.0.0",
|
18 | "debug": "^4.0.0",
|
19 | "get-stream": "^7.0.0",
|
20 | "import-from-esm": "^1.0.3",
|
21 | "into-stream": "^7.0.0",
|
22 | "lodash-es": "^4.17.21",
|
23 | "read-package-up": "^11.0.0"
|
24 | },
|
25 | "devDependencies": {
|
26 | "ava": "6.1.3",
|
27 | "c8": "10.1.2",
|
28 | "conventional-changelog-atom": "5.0.0",
|
29 | "conventional-changelog-conventionalcommits": "8.0.0",
|
30 | "conventional-changelog-ember": "5.0.0",
|
31 | "conventional-changelog-eslint": "6.0.0",
|
32 | "conventional-changelog-express": "5.0.0",
|
33 | "conventional-changelog-jshint": "5.0.0",
|
34 | "escape-string-regexp": "5.0.0",
|
35 | "fs-extra": "11.2.0",
|
36 | "lockfile-lint": "4.14.0",
|
37 | "ls-engines": "0.9.2",
|
38 | "npm-run-all2": "6.2.0",
|
39 | "prettier": "3.3.2",
|
40 | "publint": "0.2.8",
|
41 | "semantic-release": "24.0.0",
|
42 | "sinon": "18.0.0",
|
43 | "stream-buffers": "3.0.3",
|
44 | "tempy": "3.1.0",
|
45 | "testdouble": "3.20.2"
|
46 | },
|
47 | "engines": {
|
48 | "node": ">=20.8.1"
|
49 | },
|
50 | "files": [
|
51 | "lib",
|
52 | "wrappers",
|
53 | "index.js"
|
54 | ],
|
55 | "homepage": "https://github.com/semantic-release/release-notes-generator#readme",
|
56 | "keywords": [
|
57 | "changelog",
|
58 | "conventional-changelog",
|
59 | "conventional-commits",
|
60 | "github",
|
61 | "publish",
|
62 | "release",
|
63 | "release-note-generator",
|
64 | "semantic-release"
|
65 | ],
|
66 | "license": "MIT",
|
67 | "main": "./index.js",
|
68 | "exports": "./index.js",
|
69 | "c8": {
|
70 | "include": [
|
71 | "lib/**/*.js",
|
72 | "index.js"
|
73 | ],
|
74 | "reporter": [
|
75 | "json",
|
76 | "text",
|
77 | "html"
|
78 | ],
|
79 | "all": true
|
80 | },
|
81 | "peerDependencies": {
|
82 | "semantic-release": ">=20.1.0"
|
83 | },
|
84 | "lockfile-lint": {
|
85 | "path": "package-lock.json",
|
86 | "type": "npm",
|
87 | "validate-https": true,
|
88 | "allowed-hosts": [
|
89 | "npm"
|
90 | ]
|
91 | },
|
92 | "prettier": {
|
93 | "printWidth": 120,
|
94 | "trailingComma": "es5"
|
95 | },
|
96 | "publishConfig": {
|
97 | "access": "public",
|
98 | "provenance": true
|
99 | },
|
100 | "repository": {
|
101 | "type": "git",
|
102 | "url": "https://github.com/semantic-release/release-notes-generator.git"
|
103 | },
|
104 | "scripts": {
|
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"
|
113 | },
|
114 | "type": "module",
|
115 | "ava": {
|
116 | "files": [
|
117 | "test/**/*.test.js",
|
118 | "!test/integration.test.js"
|
119 | ],
|
120 | "nodeArguments": [
|
121 | "--loader=testdouble",
|
122 | "--no-warnings"
|
123 | ]
|
124 | },
|
125 | "renovate": {
|
126 | "extends": [
|
127 | "github>semantic-release/.github:renovate-config"
|
128 | ]
|
129 | },
|
130 | "packageManager": "npm@10.8.1"
|
131 | }
|