2020-01-08 14:26:34 -07:00
|
|
|
{
|
|
|
|
"name": "upx-github-action",
|
|
|
|
"description": "GitHub Action for UPX, the Ultimate Packer for eXecutables",
|
|
|
|
"main": "lib/main.js",
|
2020-04-08 18:32:42 -06:00
|
|
|
"scripts": {
|
2022-04-24 12:30:15 -06:00
|
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
2023-09-09 21:28:33 -06:00
|
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
|
|
"eslint:fix": "eslint --fix .",
|
|
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
|
|
"test": "jest",
|
2022-04-24 12:30:15 -06:00
|
|
|
"all": "yarn run build && yarn run format && yarn test"
|
2020-04-08 18:32:42 -06:00
|
|
|
},
|
2020-01-08 14:26:34 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/crazy-max/ghaction-upx.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"upx"
|
|
|
|
],
|
|
|
|
"author": "CrazyMax",
|
|
|
|
"license": "MIT",
|
2023-09-09 20:58:47 -06:00
|
|
|
"packageManager": "yarn@3.6.3",
|
2020-01-08 14:26:34 -07:00
|
|
|
"dependencies": {
|
2024-10-07 13:49:06 -06:00
|
|
|
"@actions/core": "^1.11.1",
|
2022-04-24 12:31:09 -06:00
|
|
|
"@actions/exec": "^1.1.1",
|
2024-10-27 13:24:54 -06:00
|
|
|
"@actions/http-client": "^2.2.3",
|
2022-10-18 19:07:39 -06:00
|
|
|
"@actions/tool-cache": "^2.0.1"
|
2020-01-08 14:26:34 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-09 21:23:58 -06:00
|
|
|
"@types/node": "^20.6.0",
|
2023-09-09 21:28:33 -06:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
|
|
"@vercel/ncc": "^0.38.0",
|
|
|
|
"eslint": "^8.49.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"jest": "^29.6.4",
|
|
|
|
"prettier": "^3.0.3",
|
|
|
|
"ts-jest": "^29.1.1",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^5.2.2"
|
2020-01-08 14:26:34 -07:00
|
|
|
}
|
2020-05-07 04:11:56 -06:00
|
|
|
}
|