This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.49 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
{
"name": "@trialspark/kafkajs-msk-iam-authentication-mechanism",
"version": "1.1.1",
"description": "Authentication mechanism for AWS MSK IAM for kafkajs.",
"keywords": [
"kafkajs",
"msk",
"iam",
"authentication"
],
"homepage": "https://github.com/trialspark/kafkajs-msk-iam-authentication-mechanism",
"bugs": {
"url": "https://github.com/trialspark/kafkajs-msk-iam-authentication-mechanism/issues"
},
"main": "dist/index.js",
"files": [
"/dist",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"check-types": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"test": "NODE_ENV=development jest",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "ttps://github.com/trialspark/kafkajs-msk-iam-authentication-mechanism.git"
},
"author": "TrialSpark, Inc.",
"license": "MIT",
"private": false,
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.4"
},
"publishConfig": {
"registry": "https://trialspark-622627819221.d.codeartifact.us-east-1.amazonaws.com/npm/dist/"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"semantic-release-codeartifact",
{
"tool": "npm",
"domain": "trialspark",
"repository": "dist",
"domain_owner": "622627819221"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "Release <%= nextRelease.version %> - <%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %> [skip ci]\n\n<%= nextRelease.notes %>"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@aws-sdk/types": "^3.215.0",
"@evilmartians/lefthook": "^1.1.3",
"@jest/globals": "^29.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^14.14.31",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.1",
"jest": "^29.2.1",
"kafkajs": "^2.2.0",
"mockdate": "^3.0.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"semantic-release-codeartifact": "^2.0.8",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.218.0",
"@aws-sdk/signature-v4": "^3.20.0",
"uuid": "^9.0.0"
},
"peerDependencies": {
"kafkajs": "^2.2.0"
}
}