-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "vault-aws-sts-login",
"version": "1.0.0",
"description": "Generates AWS credentials and console login links for Vault-hosted STS integrations",
"author": "Alex Williams",
"type": "commonjs",
"engines": {
"node": "16.15.0"
},
"scripts": {
"start": "ts-node aws/index.ts"
},
"license": "MIT",
"dependencies": {
"@tsconfig/node16": "1.0.3",
"@types/ini": "1.3.31",
"@types/inquirer": "^8.2.1",
"@types/node": "^16.11.3",
"@types/node-fetch": "2.6.2",
"colors": "1.4.0",
"ini": "2.0.0",
"inquirer": "8.2.4",
"node-fetch": "2.6.7",
"open": "8.4.0",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"devDependencies": {
"@types/eslint": "^8.4.5",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "5.30.5",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1"
}
}