-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@awsmag/power-msk",
"version": "1.7.0",
"description": "A package to connect and work with AWS Kafka service",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write .",
"build": "node build.js",
"postbuild": "tsc",
"prepublishOnly": "npm run build"
},
"types": "dist/types",
"files": [
"dist"
],
"keywords": [],
"author": "Simranjeet Singh",
"license": "MIT",
"dependencies": {
"@jm18457/kafkajs-msk-iam-authentication-mechanism": "^3.1.2",
"kafkajs": "^2.2.4"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/koa": "^2.13.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.5",
"esbuild": "^0.19.10",
"eslint-config-prettier": "^9.1.0",
"koa": "^2.14.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"typescript-json-decoder": "^1.0.11"
},
"directories": {
"test": "test"
}
}