This repository was archived by the owner on Mar 2, 2026. It is now read-only.
forked from aws-azure-login/aws-azure-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@cj-tech-master/aws-azure-login",
"version": "3.6.7",
"description": "Use Azure AD SSO to log into the AWS CLI.",
"main": "index.js",
"author": {
"name": "CJ",
"url": "https://github.com/cjnoname"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cjnoname/aws-azure-login.git"
},
"bugs": "https://github.com/cjnoname/aws-azure-login/issues",
"engines": {
"node": ">=18.0"
},
"bin": {
"aws-azure-login": "lib/index.js"
},
"scripts": {
"start": "ts-node-dev src/index.ts",
"build": "tsc",
"watch": "tsc -w",
"eslint": "eslint . --ext .ts",
"prettier:write": "prettier --write \"src/**/*.{ts,json}\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"test": "npm run eslint && npm run prettier:check"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.848.0",
"@smithy/node-http-handler": "^4.1.0",
"bluebird": "^3.7.2",
"cheerio": "^1.1.2",
"commander": "^9.5.0",
"debug": "^4.4.1",
"ini": "^3.0.1",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"proxy-agent": "^6.5.0",
"puppeteer": "^24.14.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/cheerio": "^0.22.35",
"@types/debug": "^4.1.12",
"@types/ini": "^1.3.34",
"@types/inquirer": "^8.2.10",
"@types/lodash": "^4.17.20",
"@types/mkdirp": "^1.0.2",
"@types/node": "^22.13.14",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"prettier": "^3.6.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}