-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.91 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "get-sso-creds",
"version": "6.4.3",
"description": "CLI tool to retrieve or set AWS SSO credentials.",
"author": "James Chung @JamesChung",
"bin": {
"gscreds": "./bin/run"
},
"homepage": "https://github.com/JamesChung/get-sso-creds",
"license": "MIT",
"main": "./dist/index.js",
"repository": "JamesChung/get-sso-creds",
"files": [
"./bin",
"./dist",
"./npm-shrinkwrap.json",
"./oclif.manifest.json"
],
"dependencies": {
"@aws-sdk/client-sts": "^3.272.0",
"@oclif/core": "^1.26.2",
"@oclif/plugin-help": "^5.2.4",
"@oclif/plugin-plugins": "^2.3.2",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"clipboardy": "^2.3.0",
"ini": "^3.0.1",
"inquirer": "^8.2.5",
"open": "^8.4.1"
},
"devDependencies": {
"@oclif/test": "^2.3.6",
"@types/chai": "^4.3.4",
"@types/ini": "^1.3.31",
"@types/inquirer": "^8.2.6",
"@types/mocha": "^9.1.1",
"@types/node": "^18.14.0",
"chai": "^4.3.7",
"eslint-config-prettier": "^8.6.0",
"globby": "^11.1.0",
"mocha": "^10.2.0",
"npm-check-updates": "^16.7.5",
"oclif": "^3.6.5",
"pkg": "^5.8.0",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "gscreds",
"dirname": "gscreds",
"commands": "./dist/commands",
"topicSeparator": " "
},
"scripts": {
"build": "npm run prepack && shx rm -rf dist && tsc -b",
"build:all": "npm run build:linux-bins && npm run build:macos-bins && npm run build:win-bins",
"build:linux-bins": "npm run build:linux-arm64 && npm run build:linux-x64",
"build:linux-arm64": "pkg -o build/linux/arm64/gscreds -t node18-linux-arm64 .",
"build:linux-x64": "pkg -o build/linux/x64/gscreds -t node18-linux-x64 .",
"build:macos-bins": "npm run build:macos-arm64 && npm run build:macos-x64",
"build:macos-arm64": "pkg -o build/macos/arm64/gscreds -t node18-macos-arm64 .",
"build:macos-x64": "pkg -o build/macos/x64/gscreds -t node18-macos-x64 .",
"build:win-bins": "npm run build:win-arm64 && npm run build:win-x64",
"build:win-arm64": "pkg -o build/win/arm64/gscreds -t node18-win-arm64 .",
"build:win-x64": "pkg -o build/win/x64/gscreds -t node18-win-x64 .",
"pack:deb": "oclif pack deb",
"pack:macos": "oclif pack macos",
"pack:win": "oclif pack win",
"pack:tarballs": "oclif pack tarballs --parallel",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "oclif manifest && npm run version",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"deps-update": "ncu -u --target minor",
"deploy": "npm run prepack && npm publish"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/JamesChung/get-sso-creds/issues",
"keywords": [
"oclif",
"aws",
"cli",
"sso"
],
"types": "dist/index.d.ts"
}