-
Notifications
You must be signed in to change notification settings - Fork 271
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "aws-azure-login",
"version": "3.6.4",
"description": "Use Azure AD SSO to log into the AWS CLI.",
"main": "index.js",
"author": {
"name": "aws-azure-login devs",
"url": "https://github.com/aws-azure-login"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aws-azure-login/aws-azure-login.git"
},
"bugs": "https://github.com/aws-azure-loginc/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:write": "prettier --write \"src/**/*.{ts,json}\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"test": "yarn eslint && yarn prettier:check"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.473.0",
"@smithy/node-http-handler": "^2.5.0",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.10",
"commander": "^9.5.0",
"debug": "^4.3.1",
"ini": "^3.0.1",
"inquirer": "^8.2.6",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"proxy-agent": "^6.4.0",
"puppeteer": "^13.7.0",
"uuid": "^8.3.2"
},
"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.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^20.11.30",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"prettier": "^2.8.8",
"ts-node-dev": "^1.1.8",
"typescript": "^5.4.3"
}
}