-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "jira-smart-commit",
"version": "1.2.0",
"description": "A githook script that transforms commit messages to JIRA smart commits based on branch names",
"author": "Jesse Dobbelaere <[email protected]>",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessedobbelaere/jira-smart-commit.git"
},
"homepage": "https://github.com/jessedobbelaere/jira-smart-commit#readme",
"bugs": {
"url": "https://github.com/jessedobbelaere/jira-smart-commit/issues"
},
"keywords": [
"git",
"jira",
"smart commit",
"husky",
"git hook"
],
"bin": {
"jira-smart-commit": "index.js"
},
"devDependencies": {
"vitest": "^2.1.8"
}
}