ghaction-upx/package.json

44 lines
1021 B
JSON
Raw Normal View History

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",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write **/*.ts",
"prune": "npm prune --production"
},
"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.3",
"@actions/exec": "^1.0.3",
"@actions/tool-cache": "^1.3.3",
2020-01-08 14:26:34 -07:00
"download": "^7.1.0",
"typed-rest-client": "^1.7.2"
2020-01-08 14:26:34 -07:00
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
2020-01-08 14:26:34 -07:00
"@types/download": "^6.2.4",
2020-01-23 07:07:35 -07:00
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
2020-01-23 01:50:55 -07:00
"jest-runtime": "^25.1.0",
2020-01-08 14:26:34 -07:00
"prettier": "^1.17.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
2020-01-08 14:26:34 -07:00
"typescript-formatter": "^7.2.2"
}
}