forked from semantic-release/release-notes-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@semantic-release/release-notes-generator",
"description": "semantic-release plugin to generate changelog content with conventional-changelog",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"bugs": {
"url": "https://github.com/semantic-release/release-notes-generator/issues"
},
"contributors": [
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"conventional-changelog-angular": "^5.0.0",
"conventional-changelog-writer": "^5.0.0",
"conventional-commits-filter": "^2.0.0",
"conventional-commits-parser": "^3.2.3",
"debug": "^4.0.0",
"get-stream": "^6.0.0",
"import-from": "^4.0.0",
"into-stream": "^6.0.0",
"lodash": "^4.17.4",
"read-pkg-up": "^7.0.0"
},
"devDependencies": {
"ava": "4.3.3",
"conventional-changelog-atom": "2.0.8",
"conventional-changelog-conventionalcommits": "5.0.0",
"conventional-changelog-ember": "2.0.9",
"conventional-changelog-eslint": "3.0.9",
"conventional-changelog-express": "2.0.6",
"conventional-changelog-jshint": "2.0.9",
"escape-string-regexp": "4.0.0",
"fs-extra": "10.1.0",
"nyc": "15.1.0",
"proxyquire": "2.1.3",
"semantic-release": "19.0.5",
"sinon": "14.0.1",
"tempy": "1.0.1",
"xo": "0.39.1"
},
"engines": {
"node": ">=14.17"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/release-notes-generator#readme",
"keywords": [
"changelog",
"conventional-changelog",
"conventional-commits",
"github",
"publish",
"release",
"release-note-generator",
"semantic-release"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=18.0.0-beta.1"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/release-notes-generator.git"
},
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"test:ci": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
},
"renovate": {
"extends": [
"github>semantic-release/.github"
]
}
}