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 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
@@ -0,0 +1,10 @@
1
+ # Change Log
2
+
3
+ ## 1.0.1 - 2022-02-22
4
+
5
+ - Update npms
6
+ - Update husky to support Apple silicon homebrew package links
7
+
8
+ ## 1.0.0 - 2022-01-18
9
+
10
+ - Initial release
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # serverless-kms-alias
2
2
 
3
+ [![NPM version](https://img.shields.io/npm/v/serverless-kms-alias.svg?style=flat)](https://npmjs.org/package/serverless-kms-alias)
4
+ [![node version](https://img.shields.io/node/v/serverless-kms-alias.svg?style=flat)](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.0",
3
+ "version": "1.0.1",
4
4
  "engines": {
5
5
  "node": ">= 12"
6
6
  },
7
7
  "dependencies": {
8
- "@aws-sdk/client-kms": "^3.47.0"
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.41",
13
- "@typescript-eslint/eslint-plugin": "5.10.0",
14
- "@typescript-eslint/parser": "5.10.0",
15
- "eslint": "8.7.0",
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.3.0",
18
+ "eslint-config-prettier": "8.4.0",
19
19
  "eslint-plugin-import": "2.25.4",
20
- "eslint-plugin-jsdoc": "37.6.1",
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.2.0",
26
- "markdownlint-cli": "0.30.0",
25
+ "lint-staged": "12.3.4",
26
+ "markdownlint-cli": "0.31.1",
27
27
  "npm-run-all": "4.1.5",
28
- "pinst": "2.1.6",
28
+ "pinst": "3.0.0",
29
29
  "prettier": "2.5.1",
30
30
  "prettier-plugin-packagejson": "2.2.15",
31
- "typescript": "4.5.4"
31
+ "typescript": "4.5.5"
32
32
  },
33
33
  "main": "dist/index.js",
34
34
  "license": "MIT",