This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "upx-action",
"version": "3.0.0",
"type": "module",
"private": true,
"description": "Strip and run UPX on executables",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --testTimeout=60000",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svestaro/upx-action.git"
},
"keywords": [
"actions",
"upx",
"crunch",
"strip",
"executables"
],
"author": "Sven-Hendrik Haase",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"glob": "^13"
},
"devDependencies": {
"@types/jest": "^29",
"@types/node": "^25",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8",
"@vercel/ncc": "^0.38.4",
"eslint": "^9",
"eslint-plugin-github": "^5.0.0",
"eslint-plugin-jest": "^28",
"jest": "^29",
"jest-circus": "^29",
"js-yaml": "^4.1.1",
"prettier": "^3.8",
"ts-jest": "^29",
"typescript": "^5"
}
}