-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
68
69
70
{
"name": "@herdingbits/awsmfa",
"version": "1.0.3",
"description": "Manages the AWS credentials file when working with MFA enabled accounts.",
"license": "MIT",
"author": "Marcel Scherzer",
"homepage": "https://www.herdingbits.com",
"repository": {
"type": "git",
"url": "https://github.com/quicken/aws-mfa.git"
},
"bugs": {
"url": "https://github.com/quicken/aws-mfa/issues"
},
"keywords": [
"aws mfa",
"herdingbits",
"aws credentials",
"iam"
],
"engineStrict": true,
"engines": {
"node": ">=v16.15.1",
"npm": ">=8.11.0"
},
"main": "src/index.ts",
"bin": {
"awsmfa": "./dist/index.js"
},
"files": [
"dist",
"src",
"types"
],
"scripts": {
"build": "tsc",
"debug": "tsc && node --inspect ./dist/index.js",
"docs": "typedoc",
"start": "tsc && node ./dist/index.js",
"test": "jest"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@aws-sdk/client-sts": "^3.197.0",
"ini": "^3.0.1",
"prompt": "^1.3.0",
"tslib": "^2.3.1",
"yargs": "^17.6.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.197.0",
"@types/colors": "^1.2.1",
"@types/ini": "^1.3.31",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@types/prompt": "^1.1.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"aws-sdk-client-mock": "^2.0.0",
"dotenv": "^16.0.0",
"esbuild": "^0.15.12",
"eslint": "^8.11.0",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"typedoc": "^0.23.18",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.4.3"
}
}