-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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": "aws-saml-cli",
"version": "1.0.4",
"author": "bug3",
"description": "A CLI tool to fetch AWS credentials via SAML authentication",
"license": "MIT",
"types": "./dist/cli.d.ts",
"bin": {
"aws-saml-cli": "bin/aws-saml-cli"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"postinstall": "playwright install"
},
"devDependencies": {
"@types/node": "^24.0.14",
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.848.0",
"commander": "^14.0.0",
"fast-xml-parser": "^5.2.5",
"inquirer": "^12.7.0",
"playwright": "^1.54.1",
"uniquenv": "^0.0.5"
},
"homepage": "https://github.com/bug3/aws-saml-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bug3/aws-saml-cli.git"
},
"bugs": {
"url": "https://github.com/bug3/aws-saml-cli/issues"
},
"files": [
"bin",
"dist",
"README.md"
],
"keywords": [
"cli",
"aws",
"automation",
"saml",
"authentication",
"credentials",
"sts",
"identity-provider"
]
}