This repository has been archived by the owner on Mar 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "kafkaesk",
"version": "0.9.0",
"description": "High-level TypeScript Kafka consumer and producer based on node-rdkafka.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"format:check": "prettier --check 'src/**/*.ts'",
"format:write": "prettier --write 'src/**/*.ts'",
"format:staged": "pretty-quick --staged",
"lint": "eslint src --ext .js,.ts",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run format:staged",
"pre-push": "npm run build && npm run lint"
}
},
"engines": {
"node": ">=12.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juriwiens/kafkaesk.git"
},
"keywords": [
"kafka",
"consumer",
"producer",
"rdkafka"
],
"author": "Juri Wiens <juriwiens@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/juriwiens/kafkaesk/issues"
},
"homepage": "https://github.com/juriwiens/kafkaesk#readme",
"dependencies": {
"fastify-plugin": "^1.6.1",
"lodash.merge": "^4.6.2",
"lodash.range": "^3.2.0",
"node-rdkafka": "^2.8.1",
"remeda": "^0.0.20",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^8.1.0"
},
"peerDependencies": {
"prom-client": "^12.0.0"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.6",
"@types/lodash.range": "^3.2.6",
"@types/node": "14.0.13",
"@types/pino": "^6.3.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"fastify": "^2.14.1",
"husky": "^4.2.5",
"pino": "^6.3.2",
"pino-pretty": "^4.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"prom-client": "^12.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}