-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 914 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 914 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
26
27
28
29
30
31
{
"name": "github-repo-branch-naming-policy-action",
"version": "1.1.1",
"description": "A GitHub Action to prevent pull requests from being merged and sends issue notifications if a branch is not following the configured naming convention.",
"author": {
"name": "GitHub Expert Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Nick Nagel",
"email": "nicklegan@github.com",
"url": "https://github.com/nicklegan"
}
],
"license": "MIT",
"repository": "github:nicklegan/github-repo-branch-naming-policy-action",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"main": "index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --out dist --license licenses.txt --quiet --minify"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
}
}