This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "kafkajs-async-retry",
"version": "0.0.0-development",
"description": "A helper intended for use with KafkaJS that assists with retrying failed messages an an async manner",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"README.md"
],
"author": {
"name": "Brian Phillips",
"email": "bphillips@shutterstock.com"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@jest/globals": "^29.7.0",
"@types/ip": "^1.1.3",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"@vidavidorra/commitlint-config": "^7.0.6",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"kafkajs": "^2.2.4",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
},
"peerDependencies": {
"kafkajs": "^2.1.0"
},
"scripts": {
"build": "tsc --project ./tsconfig-dist.json",
"clean": "tsc --build ./tsconfig-dist.json --clean && rm -rf dist coverage *.tsbuildinfo",
"test": "jest",
"test:integration": "INTEGRATION_KAFKA_BROKER=localhost:9092 jest --coverage=false src/integration.test.ts",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json|md|yaml|yml)\"",
"prepare": "husky",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{?js,?ts}": [
"eslint --cache --fix",
"npm run format"
],
"*.{md,json}": "npm run format"
},
"repository": {
"type": "git",
"url": "https://github.com/shutterstock/kafkajs-async-retry.git"
}
}