-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1022 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
{
"name": "md-jira-linker",
"version": "0.1.0",
"description": "Find JIRA Issues in markdown files and replace them with a link to the ticket.",
"main": "main.mjs",
"bin": {
"mdjl": "main.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "gitccl write CHANGELOG CHANGELOG.md https://github.com/ltakacs95/md-jira-linker && git add -A CHANGELOG.md && git commit --amend --no-edit",
"lint": "npx prettier --write . && npx standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ltakacs95/md-jira-linker.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ltakacs95/md-jira-linker/issues"
},
"homepage": "https://github.com/ltakacs95/md-jira-linker#readme",
"devDependencies": {
"@canthisbeautomated/commitchangelog": "^0.5.2",
"prettier-config-standard": "^5.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"commander": "^9.3.0"
}
}