-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.13 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.13 KB
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
{
"name": "serverless-kms-alias",
"version": "5.0.73",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "unbuild",
"check:types": "tsc --noEmit",
"lint:markdown": "prettier --write '*.md' '!(node_modules|dist)/**/*.md' && markdownlint '*.md' '!(node_modules|dist)/**/*.md' --config=.github/linters/.markdown-lint.yml --fix",
"lint:code": "prettier --write package.json && eslint --fix",
"lint": "run-p lint:*",
"lint-staged": "lint-staged",
"prepublishOnly": "rm -rf dist && npm run build && npm run lint && pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky"
},
"lint-staged": {
"*.md": [
"prettier --write",
"markdownlint --config=.github/linters/.markdown-lint.yml --fix"
],
"./*.cjs": [
"eslint --fix"
],
"./*.mjs": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"license": "MIT",
"repository": "github:serverless-plugins/serverless-kms-alias",
"engines": {
"node": ">= 18"
},
"dependencies": {
"@aws-sdk/client-kms": "3.1036.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/lodash": "4.17.24",
"@types/serverless": "3.12.28",
"eslint": "10.2.1",
"eslint-config-decent": "4.2.37",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint-cli": "0.48.0",
"npm-run-all2": "8.0.4",
"pinst": "3.0.0",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"unbuild": "3.6.1"
}
}