forked from cakeinpanic/jira-description-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
{
"name": "jira-description-action",
"version": "0.4.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'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakeinpanic/jira-description-action"
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"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.2.6",
"@actions/github": "^1.1.0",
"@types/jest": "^25.2.3",
"@types/node": "^13.13.30",
"@zeit/ncc": "^0.22.3",
"axios": "^0.19.2",
"engines-ok": "^1.2.0",
"jest": "^25.5.4",
"jest-circus": "^25.5.4",
"lint-staged": "^10.5.1",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"devDependencies": {
"husky": "^4.3.0",
"prettier": "^2.1.2"
}
}