This repository was archived by the owner on Mar 26, 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
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "aws-azure-login",
"version": "3.3.0",
"description": "Use Azure AD SSO to log into the AWS CLI.",
"main": "index.js",
"author": {
"name": "Kenneth Aasan",
"url": "https://github.com/kennethaasan"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sportradar/aws-azure-login.git"
},
"bugs": "https://github.com/sportradar/aws-azure-login/issues",
"engines": {
"node": ">=12.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:check": "prettier --list-different \"src/**/*.ts\"",
"test": "yarn eslint && yarn prettier:check"
},
"dependencies": {
"aws-sdk": "^2.824.0",
"bluebird": "^3.7.2",
"cheerio": "1.0.0-rc.5",
"commander": "^6.2.1",
"debug": "^4.3.1",
"ini": "^2.0.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"proxy-agent": "^4.0.0",
"puppeteer": "^8.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/cheerio": "^0.22.23",
"@types/debug": "^4.1.5",
"@types/ini": "^1.3.30",
"@types/inquirer": "^7.3.1",
"@types/lodash": "^4.14.167",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.20",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.1.0",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
}
}