-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 885 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-summary-action",
"version": "0.9.5",
"description": "A GitHub Action that posts the summary of a linked Jira story in pull requests.",
"main": "dist/index.js",
"scripts": {
"start": "npx tsc -w",
"build": "npx tsc",
"test": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nora-soderlund/jira-summary-action.git"
},
"keywords": [
"jira",
"summary",
"github",
"actions"
],
"author": "Nora Söderlund",
"license": "ISC",
"bugs": {
"url": "https://github.com/nora-soderlund/jira-summary-action/issues"
},
"homepage": "https://github.com/nora-soderlund/jira-summary-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"adf-to-md": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.5.9",
"typescript": "^5.2.2"
}
}