forked from ruimarinho/gsts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gsts",
"version": "5.0.4",
"description": "Google authentication for the AWS Management Console via Amazon's STS service",
"license": "MIT",
"repository": "ruimarinho/gsts",
"author": {
"name": "Rui Marinho",
"email": "ruipmarinho@gmail.com"
},
"bin": "index.js",
"files": [
"config-manager.js",
"credentials-manager.js",
"errors.js",
"formatter.js",
"index.js",
"logger.js",
"parameters.js",
"parser.js",
"role.js",
"session.js",
"utils.js"
],
"keywords": [
"google",
"aws",
"sts",
"authentication",
"auth"
],
"dependencies": {
"@aws-sdk/client-sts": "^3.478.0",
"@smithy/shared-ini-file-loader": "^2.2.7",
"debug": "^4.3.4",
"env-paths": "^3.0.0",
"ini": "^4.1.1",
"libsaml": "^1.0.0",
"open": "^10.0.0",
"ora": "^7.0.1",
"playwright": "^1.40.1",
"prompts": "^2.4.2",
"trash": "^8.1.1",
"xmldom": "npm:@xmldom/xmldom@^0.8.10",
"yargs": "^17.7.2"
},
"devDependencies": {
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"jest": "^29.7.0"
},
"overrides": {
"libsaml": {
"xmldom": "$xmldom"
}
},
"resolutions": {
"libsaml/xmldom": "npm:@xmldom/xmldom@^0.8.4"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"type": "module"
}