-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "switch-profile",
"version": "0.1.2",
"main": "index.js",
"bin": "index.js",
"description": "NPX script that exposes terminal shortcut to easily switch between cloud configuration (aws, gcp).",
"keywords": [
"aws-cli",
"aws",
"profile",
"sso-profile",
"sso"
],
"repository": {
"type": "git",
"url": "https://github.com/nicolasdao/switch-profile.git"
},
"bugs": {
"url": "https://github.com/nicolasdao/switch-profile/issues"
},
"homepage": "https://github.com/nicolasdao/switch-profile#readme",
"scripts": {
"dev": "TZ=UTC NODE_ENV=dev node index.js",
"lint": "eslint index.js src/ test/ --fix",
"push": "git push --follow-tags origin master && npm publish --access=public",
"rls": "standard-version --release-as",
"start": "TZ=UTC NODE_ENV=production node index.js",
"test": "mocha --exit",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"author": "Nicolas Dao",
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.8.0",
"mocha": "^8.2.1",
"standard-version": "^9.3.0"
},
"dependencies": {
"archiver": "^5.3.0",
"colors": "^1.4.0",
"commander": "^8.0.0",
"convert-stream": "^1.0.2",
"core-async": "^2.0.4",
"fast-glob": "^3.2.7",
"inquirer": "^8.1.2",
"inquirer-autocomplete-prompt": "^1.4.0",
"mime-types": "^2.1.31",
"puffy": "^1.6.0",
"rimraf": "^3.0.2",
"tar-stream": "^2.2.0"
}
}