-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "@worksome/jira-branch-name-validator",
"version": "2.1.0",
"description": "A GitHub action for ensuring that the branch name contains a valid JIRA id",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/index.ts -o dist/github && ncc build src/pre-commit.ts -o dist/local"
},
"repository": {
"type": "git",
"url": "https://github.com/worksome/jira-branch-name-validator-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/worksome/jira-branch-name-validator-action/issues"
},
"files": [
"dist"
],
"bin": {
"branch-validator": "./dist/local/index.js"
},
"publishConfig": {
"@worksome:registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/worksome/jira-branch-name-validator-action#readme",
"dependencies": {
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}