-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.05 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.05 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
{
"name": "setup-iamlive",
"version": "0.2.0",
"description": "Capture the used AWS IAM permissions using client-side monitoring (CSM) within your workflow.",
"main": "index.ts",
"repository": "git@github.com:marcofranssen/setup-iamlive.git",
"author": "Marco Franssen <marco.franssen@gmail.com>",
"license": "MIT",
"scripts": {
"build": "pnpm build-main && pnpm build-post",
"build-main": "ncc build -m -s --license licenses.txt",
"build-post": "ncc build capture-policy.js -m -s --license licenses.txt -o dist/capture-policy",
"build:watch": "ncc build -m -s --license licenses.txt -w",
"build-post:watch": "ncc build capture-policy.js -m -s --license licenses.txt -o dist/capture-policy -w",
"test-run": "act -j assert"
},
"dependencies": {
"@actions/artifact": "^6.2.0",
"@actions/core": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"find-process": "^2.1.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.9",
"@types/node": "^25.3.3",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3"
}
}