serverless-kms-alias 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +1 -1
- package/CHANGELOG.md +10 -0
- package/README.md +3 -0
- package/package.json +12 -12
package/.husky/pre-commit
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# shellcheck disable=SC1090,SC1091
|
|
3
3
|
. "$(dirname "$0")/_/husky.sh"
|
|
4
4
|
|
|
5
|
-
PATH=$PATH:/usr/local/bin
|
|
5
|
+
PATH=$PATH:/usr/local/bin:/opt/homebrew/bin
|
|
6
6
|
|
|
7
7
|
echo 'NOTE: If node or npm is not found, you may need to run brew link for your specific node version'
|
|
8
8
|
npm run lint-staged
|
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# serverless-kms-alias
|
|
2
2
|
|
|
3
|
+
[](https://npmjs.org/package/serverless-kms-alias)
|
|
4
|
+
[](https://nodejs.org)
|
|
5
|
+
|
|
3
6
|
Serverless plugin to expand a KMS alias variable to the ARN of the KMS key
|
|
4
7
|
|
|
5
8
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "serverless-kms-alias",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">= 12"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-kms": "^3.
|
|
8
|
+
"@aws-sdk/client-kms": "^3.52.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@types/lodash": "4.14.178",
|
|
12
|
-
"@types/serverless": "1.78.
|
|
13
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
14
|
-
"@typescript-eslint/parser": "5.
|
|
15
|
-
"eslint": "8.
|
|
12
|
+
"@types/serverless": "1.78.39",
|
|
13
|
+
"@typescript-eslint/eslint-plugin": "5.12.1",
|
|
14
|
+
"@typescript-eslint/parser": "5.12.1",
|
|
15
|
+
"eslint": "8.9.0",
|
|
16
16
|
"eslint-config-airbnb-base": "15.0.0",
|
|
17
17
|
"eslint-config-airbnb-typescript": "16.1.0",
|
|
18
|
-
"eslint-config-prettier": "8.
|
|
18
|
+
"eslint-config-prettier": "8.4.0",
|
|
19
19
|
"eslint-plugin-import": "2.25.4",
|
|
20
|
-
"eslint-plugin-jsdoc": "37.
|
|
20
|
+
"eslint-plugin-jsdoc": "37.9.4",
|
|
21
21
|
"eslint-plugin-prettier": "4.0.0",
|
|
22
22
|
"eslint-plugin-promise": "6.0.0",
|
|
23
23
|
"eslint-plugin-security": "1.4.0",
|
|
24
24
|
"husky": "7.0.4",
|
|
25
|
-
"lint-staged": "12.
|
|
26
|
-
"markdownlint-cli": "0.
|
|
25
|
+
"lint-staged": "12.3.4",
|
|
26
|
+
"markdownlint-cli": "0.31.1",
|
|
27
27
|
"npm-run-all": "4.1.5",
|
|
28
|
-
"pinst": "
|
|
28
|
+
"pinst": "3.0.0",
|
|
29
29
|
"prettier": "2.5.1",
|
|
30
30
|
"prettier-plugin-packagejson": "2.2.15",
|
|
31
|
-
"typescript": "4.5.
|
|
31
|
+
"typescript": "4.5.5"
|
|
32
32
|
},
|
|
33
33
|
"main": "dist/index.js",
|
|
34
34
|
"license": "MIT",
|