-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "jira-ticket-version-check-action",
"version": "1.1.0",
"private": true,
"description": "Match Jira ticket version with target pr branch",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.+(js|ts|json|mjs)\"",
"format-check": "prettier --check \"**/*.+(js|ts|json|mjs)\"",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"jira-client": "^6.23.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jira-client": "^6.21.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-github": "^5.1.1",
"globals": "^15.12.0",
"js-yaml": "^4.1.0",
"prettier": "3.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
}
}