mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 02:16:09 -07:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "upx-github-action",
|
|
"description": "GitHub Action for UPX, the Ultimate Packer for eXecutables",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"test": "jest --coverage",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"pre-checkin": "npm run format && npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/crazy-max/ghaction-upx.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"upx"
|
|
],
|
|
"author": "CrazyMax",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.4",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/http-client": "^1.0.8",
|
|
"@actions/tool-cache": "^1.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.2.1",
|
|
"@types/node": "^13.13.4",
|
|
"@zeit/ncc": "^0.22.1",
|
|
"jest": "^25.5.0",
|
|
"jest-circus": "^25.5.0",
|
|
"jest-runtime": "^25.5.0",
|
|
"prettier": "^2.0.5",
|
|
"ts-jest": "^25.4.0",
|
|
"typescript": "^3.8.3",
|
|
"typescript-formatter": "^7.2.2"
|
|
}
|
|
}
|