UNPKG

2.65 kBJSONView Raw
1{
2 "name": "@semantic-release/release-notes-generator",
3 "description": "semantic-release plugin to generate changelog content with conventional-changelog",
4 "version": "10.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": "^5.0.0",
15 "conventional-changelog-writer": "^5.0.0",
16 "conventional-commits-filter": "^2.0.0",
17 "conventional-commits-parser": "^3.2.3",
18 "debug": "^4.0.0",
19 "get-stream": "^6.0.0",
20 "import-from": "^4.0.0",
21 "into-stream": "^6.0.0",
22 "lodash": "^4.17.4",
23 "read-pkg-up": "^7.0.0"
24 },
25 "devDependencies": {
26 "ava": "3.15.0",
27 "conventional-changelog-atom": "2.0.8",
28 "conventional-changelog-conventionalcommits": "4.6.1",
29 "conventional-changelog-ember": "2.0.9",
30 "conventional-changelog-eslint": "3.0.9",
31 "conventional-changelog-express": "2.0.6",
32 "conventional-changelog-jshint": "2.0.9",
33 "escape-string-regexp": "4.0.0",
34 "fs-extra": "10.0.0",
35 "nyc": "15.1.0",
36 "proxyquire": "2.1.3",
37 "semantic-release": "18.0.1",
38 "sinon": "12.0.1",
39 "tempy": "1.0.1",
40 "xo": "0.28.3"
41 },
42 "engines": {
43 "node": ">=14.17"
44 },
45 "files": [
46 "lib",
47 "index.js"
48 ],
49 "homepage": "https://github.com/semantic-release/release-notes-generator#readme",
50 "keywords": [
51 "changelog",
52 "conventional-changelog",
53 "conventional-commits",
54 "github",
55 "publish",
56 "release",
57 "release-note-generator",
58 "semantic-release"
59 ],
60 "license": "MIT",
61 "main": "index.js",
62 "nyc": {
63 "include": [
64 "lib/**/*.js",
65 "index.js"
66 ],
67 "reporter": [
68 "json",
69 "text",
70 "html"
71 ],
72 "all": true
73 },
74 "peerDependencies": {
75 "semantic-release": ">=18.0.0-beta.1"
76 },
77 "prettier": {
78 "printWidth": 120,
79 "trailingComma": "es5"
80 },
81 "publishConfig": {
82 "access": "public"
83 },
84 "repository": {
85 "type": "git",
86 "url": "https://github.com/semantic-release/release-notes-generator.git"
87 },
88 "scripts": {
89 "lint": "xo",
90 "pretest": "npm run lint",
91 "semantic-release": "semantic-release",
92 "test": "nyc ava -v",
93 "test:ci": "nyc ava -v"
94 },
95 "xo": {
96 "prettier": true,
97 "space": true,
98 "rules": {
99 "unicorn/string-content": "off"
100 }
101 },
102 "renovate": {
103 "extends": [
104 "github>semantic-release/.github"
105 ]
106 }
107}