-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "awsudo",
"version": "3.0.0-alpha.0",
"description": "A simple utility for executing cli commands with an assumed role.",
"bin": {
"awsudo": "src/index.js"
},
"scripts": {
"deploy-docker": "scripts/deploy-docker",
"postversion": "scripts/postversion",
"pretest": "npm outdated -- --warn-only && npm audit && eslint src/**/*.js",
"preversion": "scripts/preversion",
"start": "src/index.js",
"test": "JASMINE_CONFIG_PATH=jasmine.json jasmine",
"test:echo-for-validate-features": "echo $*",
"test:watch": "nodemon --ext js --watch src --exec npm test",
"update": "npx npm-check -uE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meltwater/awsudo.git"
},
"keywords": [
"aws",
"awscli",
"sudo",
"sts",
"assume",
"assumerole",
"stsassume",
"stsassumerole",
"role",
"rolearn",
"arn",
"cli",
"bash"
],
"author": {
"name": "AWS sudo open source at Meltwater",
"email": "awsudo.opensource@meltwater.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meltwater/awsudo/issues"
},
"homepage": "https://github.com/meltwater/awsudo#readme",
"dependencies": {
"@aws-sdk/client-sts": "3.670.0",
"@aws-sdk/shared-ini-file-loader": "3.374.0",
"@smithy/shared-ini-file-loader": "3.1.8",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "9.12.0",
"eslint": "9.12.0",
"eslint-plugin-depend": "0.11.0",
"eslint-plugin-jsdoc": "50.4.1",
"globals": "15.11.0",
"jasmine": "5.4.0",
"mustache": "4.2.0",
"nodemon": "3.1.7"
}
}