-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
63 lines (63 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "jira-description-action",
"version": "0.7.0",
"description": "Add JIRA issue details to your GitHub pull request",
"main": "lib/index.js",
"scripts": {
"build": "engines-ok && ncc build src/main.ts -o lib -m",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier --write '**/*.ts'",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakeinpanic/jira-description-action"
},
"engines": {
"node": ">= 20"
},
"keywords": [
"actions",
"github-actions",
"pr-title",
"node",
"setup",
"github",
"jira-summary",
"jira",
"jira-issue"
],
"author": "cakeinpanic",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.30",
"@vercel/ncc": "^0.38.1",
"axios": "^0.19.2",
"engines-ok": "^1.2.0",
"jest": "^25.5.4",
"jest-circus": "^25.5.4",
"lint-staged": "^10.5.1",
"release-it": "^16.2.1",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7",
"@release-it/conventional-changelog": "^7.0.2"
},
"devDependencies": {
"husky": "^4.3.0",
"prettier": "^2.1.2"
}
}