-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "jira-login",
"version": "1.0.0",
"description": "Logs into Jira and stores the Jira credentials locally",
"main": "index.js",
"author": "https://github.com/frieder",
"license": "MIT",
"scripts": {
"all": "npm i && npm run format-check && npm run lint && npm run build",
"build": "esbuild index.js --outfile=dist/index.js --platform=node --bundle --minify",
"format": "prettier \"**/*.{js,json,yml}\" --write",
"format-check": "prettier \"**/*.{js,json,yml}\" --check",
"lint": "eslint . --ext .js"
},
"pre-commit": [
"format-check",
"lint",
"build"
],
"dependencies": {
"@actions/core": "^1.11.1",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3"
},
"engines": {
"node": ">=20",
"npm": ">=9"
}
}