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": {
|
|
|
|
"build": "tsc && ncc build",
|
2020-05-06 13:14:31 -06:00
|
|
|
"test": "jest --coverage",
|
2020-04-08 18:32:42 -06:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"pre-checkin": "npm run format && npm run build"
|
|
|
|
},
|
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": {
|
2020-05-05 18:05:12 -06:00
|
|
|
"@actions/core": "^1.2.4",
|
2020-04-30 02:45:10 -06:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-05-06 14:14:50 -06:00
|
|
|
"@actions/http-client": "^1.0.8",
|
|
|
|
"@actions/tool-cache": "^1.3.4"
|
2020-01-08 14:26:34 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-07 11:49:16 -06:00
|
|
|
"@types/jest": "^25.2.1",
|
2020-04-27 15:09:42 -06:00
|
|
|
"@types/node": "^13.13.4",
|
2020-04-08 18:32:42 -06:00
|
|
|
"@zeit/ncc": "^0.22.1",
|
2020-04-30 02:20:22 -06:00
|
|
|
"jest": "^25.5.0",
|
2020-04-30 03:12:18 -06:00
|
|
|
"jest-circus": "^25.5.0",
|
2020-04-30 02:24:17 -06:00
|
|
|
"jest-runtime": "^25.5.0",
|
2020-04-22 10:13:14 -06:00
|
|
|
"prettier": "^2.0.5",
|
2020-04-20 05:18:08 -06:00
|
|
|
"ts-jest": "^25.4.0",
|
2020-03-02 03:28:33 -07:00
|
|
|
"typescript": "^3.8.3",
|
2020-01-08 14:26:34 -07:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
2020-04-08 18:32:42 -06:00
|
|
|
}
|