-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "jira-pr-action",
"version": "1.0.0",
"description": "Github action to add Jira ticket to PR title / add links to PR description.",
"author": "On Running",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --write . \"src/**/*\"",
"clean": "rimraf ./dist",
"build": "webpack",
"test": "jest"
},
"engines": {
"node": "20.11.1",
"yarn": ">=1.22.5"
},
"dependencies": {
"typescript": "^4.5.5"
},
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}