forked from devtanc/aws-profile-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.21 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
{
"name": "aws-profile-switcher",
"version": "2.0.1",
"description": "A basic cli for switching your default aws profile in ~/.aws/credentials",
"main": "switcher.js",
"scripts": {
"test": "xo && mocha"
},
"xo": {
"space": true,
"globals": [
"describe",
"it",
"after"
],
"rules": {
"camelcase": [
"off"
],
"comma-dangle": [
"error",
"always-multiline"
],
"max-nested-callbacks": [
"off"
],
"object-curly-spacing": [
"error",
"always",
{
"arraysInObjects": false,
"objectsInObjects": false
}
]
}
},
"keywords": [
"aws",
"cli",
"credentials",
"profiles",
"switching"
],
"author": "devtanc",
"license": "MIT",
"bin": {
"switcher": "./cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devtanc/aws-profile-switcher.git"
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"chalk": "^2.1.0",
"commander": "^2.9.0",
"prompt": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^4.0.1",
"xo": "^0.18.1"
}
}