-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 787 Bytes
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
{
"name": "conventional-commit-changelog-generator",
"version": "1.0.0",
"description": "Generate a changelog based on the conventional commit history for the latest tag.",
"main": "index.js",
"scripts": {
"compile": "ncc build index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:Helmisek/conventional-changelog-generator.git"
},
"author": "Jirka Helmich",
"license": "MIT",
"bugs": {
"url": "https://github.com/Helmisek/conventional-changelog-generator/issues"
},
"homepage": "https://github.com/Helmisek/conventional-changelog-generator#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"compare-versions": "^3.6.0"
}
}