-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 830 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 830 Bytes
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
{
"name": "aws-sso-cli",
"version": "0.6.3",
"description": "A tool for easily switching between different AWS SSO accounts.",
"main": "index.js",
"author": "eeno",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codeeno/aws-sso-cli"
},
"keywords": [
"aws",
"sso",
"cli",
"authentication",
"single-sign-on",
"credentials"
],
"bin": {
"aws-sso-cli": "./app.js"
},
"type": "module",
"engineStrict": true,
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"aws-sdk": "^2.831.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"configstore": "^5.0.1",
"fuse.js": "^6.4.6",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.3.0",
"open": "^7.3.1",
"ora": "^5.3.0",
"yargs": "^16.2.0"
}
}