UNPKG

2.88 kBJSONView Raw
1{
2 "name": "@semantic-release/release-notes-generator",
3 "description": "semantic-release plugin to generate changelog content with conventional-changelog",
4 "version": "11.0.3",
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": "^6.0.0",
15 "conventional-changelog-writer": "^6.0.0",
16 "conventional-commits-filter": "^3.0.0",
17 "conventional-commits-parser": "^4.0.0",
18 "debug": "^4.0.0",
19 "get-stream": "^7.0.0",
20 "import-from": "^4.0.0",
21 "into-stream": "^7.0.0",
22 "lodash-es": "^4.17.21",
23 "read-pkg-up": "^9.0.0"
24 },
25 "devDependencies": {
26 "ava": "5.3.0",
27 "c8": "7.14.0",
28 "conventional-changelog-atom": "3.0.0",
29 "conventional-changelog-conventionalcommits": "6.0.0",
30 "conventional-changelog-ember": "3.0.0",
31 "conventional-changelog-eslint": "4.0.0",
32 "conventional-changelog-express": "3.0.0",
33 "conventional-changelog-jshint": "3.0.0",
34 "escape-string-regexp": "5.0.0",
35 "fs-extra": "11.1.0",
36 "prettier": "2.8.8",
37 "semantic-release": "21.0.3",
38 "stream-buffers": "3.0.2",
39 "tempy": "3.0.0",
40 "testdouble": "3.18.0"
41 },
42 "engines": {
43 "node": ">=18"
44 },
45 "files": [
46 "lib",
47 "wrappers",
48 "index.js"
49 ],
50 "homepage": "https://github.com/semantic-release/release-notes-generator#readme",
51 "keywords": [
52 "changelog",
53 "conventional-changelog",
54 "conventional-commits",
55 "github",
56 "publish",
57 "release",
58 "release-note-generator",
59 "semantic-release"
60 ],
61 "license": "MIT",
62 "main": "index.js",
63 "c8": {
64 "include": [
65 "lib/**/*.js",
66 "index.js"
67 ],
68 "reporter": [
69 "json",
70 "text",
71 "html"
72 ],
73 "all": true
74 },
75 "peerDependencies": {
76 "semantic-release": ">=20.1.0"
77 },
78 "prettier": {
79 "printWidth": 120,
80 "trailingComma": "es5"
81 },
82 "publishConfig": {
83 "access": "public",
84 "provenance": true
85 },
86 "repository": {
87 "type": "git",
88 "url": "https://github.com/semantic-release/release-notes-generator.git"
89 },
90 "scripts": {
91 "lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
92 "lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
93 "pretest": "npm run lint",
94 "semantic-release": "semantic-release",
95 "test": "c8 ava -v",
96 "test:ci": "c8 ava -v"
97 },
98 "type": "module",
99 "ava": {
100 "nodeArguments": [
101 "--loader=testdouble",
102 "--no-warnings"
103 ]
104 },
105 "renovate": {
106 "extends": [
107 "github>semantic-release/.github"
108 ]
109 }
110}