This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
133 lines (133 loc) · 3.29 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "aws-sso-creds-helper",
"version": "1.3.3",
"description": "AWS SSO Credential helper for AWS SDK",
"main": "./lib/sso-creds.js",
"contributors": [
"Ryan Sonshine (https://github.com/ryansonshine)"
],
"license": "MIT",
"bin": {
"ssocreds": "./bin/index.js",
"aws-sso-creds-helper": "./bin/index.js"
},
"files": [
"!lib/__tests__/**/*",
"lib/**/*",
"bin/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ryansonshine/aws-sso-creds-helper.git"
},
"bugs": "https://github.com/ryansonshine/aws-sso-creds-helper/issues",
"engines": {
"node": ">=12.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./src/ --fix",
"clean": "rm -rf ./lib/",
"test": "jest --coverage",
"start": "TS_NODE_FILES=true ts-node ./src/cli.ts",
"cm": "cz",
"test:watch": "jest --watch",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"keywords": [
"aws sso credentials",
"aws authentication",
"aws single sign on",
"aws cli v2"
],
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@types/ini": "^1.3.30",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^7.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"node-notifier": "^9.0.0",
"prettier": "^3.0.3",
"semantic-release": "^21.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.2.1",
"typescript": "^5.2.2"
},
"dependencies": {
"aws-cli-util-logger": "^1.0.1",
"aws-sdk": "^2.717.0",
"commander": "^6.0.0",
"ini": "^1.3.5",
"proxy-agent": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslint_cache --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}