-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "changelog-generator",
"version": "4.3.1",
"description": "A GitHub Action that compares the commit differences between two branches",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./index.js",
"bump:readme": "replace 'v[1-9]+.[0-9]+.[0-9]+' \"v$npm_package_version\" ./README.md ./SECURITY.md",
"bump:workflow": "replace 'v[1-9]+.[0-9]+.[0-9]+' \"v$npm_package_version\" ./.github/workflows/*yml",
"format-check": "prettier --check **/*.{js,yml,json}",
"format": "prettier --write **/*.{js,yml,json}",
"lint": "eslint ./",
"postversion": "git push && git push --tags",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"precommit": "npm run build && git add dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run bump:readme && npm run bump:workflow && git add ./dist ./README.md ./SECURITY.md ./.github/workflows/*yml"
},
"pre-commit": [
"precommit-msg",
"lint",
"format-check",
"precommit"
],
"repository": {
"type": "git",
"url": "git+https://github.com/metcalfc/changelog-generator.git"
},
"keywords": [
"releases",
"commits",
"commit",
"difference",
"branching",
"branch",
"difference"
],
"author": "Chad Metcalf",
"license": "MIT",
"bugs": {
"url": "https://github.com/metcalfc/changelog-generator/issues"
},
"homepage": "https://github.com/metcalfc/changelog-generator#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^9.14.0",
"isexe": "^3.1.1",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"replace": "^1.2.2"
}
}