-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 KB
/
package.json
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
{
"name": "setup-ghidra",
"version": "2.0.4",
"description": "This action sets up a Ghidra environment for use in actions.",
"author": "Antonio Vázquez Blanco",
"license": "MIT",
"homepage": "https://github.com/marketplace/actions/setup-ghidra-action",
"repository": {
"type": "git",
"url": "git+https://github.com/antoniovazquezblanco/setup-ghidra.git"
},
"bugs": {
"url": "https://github.com/antoniovazquezblanco/setup-ghidra/issues"
},
"keywords": [
"actions",
"node",
"setup",
"ghidra"
],
"type": "module",
"main": "index.js",
"scripts": {
"build": "ncc build src/setup-ghidra.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.2",
"@octokit/rest": "^21.1.0"
}
}