-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "@hauptmedia/zbcat",
"version": "1.1.0",
"description": "Command line viewer for events produced by the Zeebe Workflow Automation Engine.",
"author": {
"name": "Julian Haupt",
"email": "julian@haupt.media"
},
"repository": "https://github.com/hauptmedia/zbcat",
"bin": {
"zbcat": "./zbcat.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"!**/*.tsbuildinfo"
],
"license": "Apache-2.0",
"keywords": [
"zeebe",
"zeebe.io",
"microservices",
"orchestration",
"bpmn",
"Camunda",
"automation",
"process",
"workflow",
"exporter",
"protocol"
],
"scripts": {
"build": "run-s clean && tsc",
"publish:npm": "run-s clean build && npm publish --access public",
"clean": "shx rm -rf dist/",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix"
},
"devDependencies": {
"@types/uuid": "^8.3.4",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@hauptmedia/zeebe-exporter-types": "^1.0.1",
"commander": "^9.4.1",
"hazelcast-client": "^5.1.0",
"kafkajs": "^2.2.3",
"uuid": "^9.0.0"
}
}