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",
|
|
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
2020-05-06 13:14:31 -06:00
|
|
|
"test": "jest --coverage",
|
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",
|
|
|
|
"dependencies": {
|
2022-09-29 22:09:39 -06:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-04-24 12:31:09 -06:00
|
|
|
"@actions/exec": "^1.1.1",
|
2022-10-18 18:45:13 -06:00
|
|
|
"@actions/http-client": "^2.0.1",
|
2022-10-18 19:07:39 -06:00
|
|
|
"@actions/tool-cache": "^2.0.1"
|
2020-01-08 14:26:34 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-24 12:30:15 -06:00
|
|
|
"@types/node": "^16.11.26",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
|
|
"@vercel/ncc": "^0.33.3",
|
|
|
|
"eslint": "^8.11.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
"jest": "^27.2.5",
|
|
|
|
"prettier": "^2.3.1",
|
|
|
|
"ts-jest": "^27.1.2",
|
|
|
|
"ts-node": "^10.7.0",
|
|
|
|
"typescript": "^4.4.4"
|
2020-01-08 14:26:34 -07:00
|
|
|
}
|
2020-05-07 04:11:56 -06:00
|
|
|
}
|