-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "aws-auth-helper",
"version": "1.0.0",
"main": "index.js",
"bin": {
"aws-auth-helper": "./index.js"
},
"engines": {
"node": ">=4.8.3"
},
"author": "Coffee and Code <[email protected]>",
"description": "This small application assists with retrieving temporary AWS environment variables from credentials that require 2-factor authentication and assuming an AWS IAM role.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/CoffeeAndCode/aws-auth-helper.git"
},
"scripts": {
"lint": "eslint index.js lib/",
"test": "jest"
},
"keywords": [
"aws",
"bash",
"mfa",
"security",
"two factor auth",
"2-factor authentication",
"apex",
"serverless"
],
"dependencies": {
"aws-sdk": "^2.58.0",
"ini": "^1.3.4"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"concat-stream": "^1.6.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4"
}
}