-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "@release-it/keep-a-changelog",
"version": "5.0.0",
"description": "Keep-a-changelog plugin for release-it",
"type": "module",
"exports": "./index.js",
"scripts": {
"test": "bron test.js",
"release": "release-it"
},
"keywords": [
"release",
"release-it",
"release-it-plugin",
"keep-a-changelog",
"changelog",
"changes",
"unreleased"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/release-it/keep-a-changelog.git"
},
"homepage": "https://github.com/release-it/keep-a-changelog#readme",
"bugs": "https://github.com/release-it/keep-a-changelog/issues",
"author": {
"name": "Lars Kappert",
"email": "[email protected]",
"url": "https://webpro.nl"
},
"dependencies": {
"detect-newline": "^4.0.1",
"string-template": "^1.0.0"
},
"devDependencies": {
"bron": "^2.0.3",
"fs-monkey": "^1.0.5",
"memfs": "^4.6.0",
"release-it": "^17.0.0",
"sinon": "^17.0.1"
},
"peerDependencies": {
"release-it": "^17.0.0"
},
"engines": {
"node": ">=18"
},
"release-it": {
"github": {
"release": true,
"tokenRef": "GITHUB_TOKEN_RELEASE_IT"
},
"hooks": {
"before:init": "npm test"
}
}
}