-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "serverless-offline-msk",
"version": "1.0.0",
"description": "A serverless offline plugin that enables AWS MSK events",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": "./lib/index.js",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/lukevers/serverless-offline-msk.git"
},
"author": "Luke Evers",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukevers/serverless-offline-msk/issues"
},
"homepage": "https://github.com/lukevers/serverless-offline-msk#readme",
"prettier": {
"parser": "typescript",
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"keywords": [
"serverless-offline-msk",
"serverless-offline",
"serverless",
"serverless-plugin",
"serverless-offline-plugin",
"lambda",
"kafka",
"consumer",
"aws-msk",
"msk",
"sls"
],
"scripts": {
"build": "yarn run clean && yarn run bundle",
"bundle": "tsc",
"clean": "rm lib/*"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.103",
"@types/node": "^18.7.17",
"@types/serverless": "^3.12.8",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"dependencies": {
"aws-lambda": "^1.0.7",
"aws-sdk": "^2.1214.0",
"kafkajs": "^2.2.0"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">=1.22.0",
"node": ">=16.0.0"
}
}