-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.75 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@metamorphosisjs/metamorphosis",
"version": "0.7.0",
"description": "Lightweight JS framework for deploying Kakfa workers",
"main": "lib",
"types": "lib/",
"engines": {
"node": ">=10.0"
},
"author": {
"name": "Brad Ash",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/itcig/metamorphosis.git"
},
"bugs": {
"url": "https://github.com/itcig/metamorphosis/issues"
},
"homepage": "https://github.com/itcig/metamorphosis#readme",
"keywords": [
"kafka",
"consumer"
],
"bundleDependencies": [],
"scripts": {
"alex": "alex .",
"changelog": "npx auto-changelog -p --commit-limit false --unreleased --template keepachangelog",
"changelog:commit": "npm run changelog && git add CHANGELOG.md && git commit -m \"chore(changelog): Updated changelog\"",
"build": "rimraf ./lib && tsc",
"coverage": "nyc npm run test",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' 'test/**/*.{js,ts,tsx}' --fix",
"test": "npm run lint && clear && mocha \"test/**/*.ts\" --recursive --exit",
"kafka:start": "./setup/kafka-setup/start.sh",
"kafka:stop": "./setup/kafka-setup/stop.sh",
"kafka:logs": "docker-compose --file ./kafka-setup/docker-compose.yml logs -f",
"kafka:console": "./kafka-setup/kafka-console.sh",
"mysql:start": "./setup/mysql-setup/start.sh",
"mysql:stop": "./setup/mysql-setup/stop.sh",
"setup:all": "./setup/start.sh",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"prettier": "prettier --write \"{src,test}/**/*.js\"",
"prettier:docs": "prettier-markdown README.md docs/*",
"release": "release-it",
"release:patch": "release-it --ci patch",
"release:minor": "release-it --ci minor",
"release:major": "release-it --ci major",
"release:dry-run": "release-it --dry-run",
"release:github-only": "release-it --no-npm.publish",
"typedoc": "typedoc --out dist/docs src"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.{js,css,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@kafkajs/confluent-schema-registry": "^1.0.6",
"@netilon/differify": "^3.2.1",
"axios": "^0.21.1",
"colors": "^1.4.0",
"config": "^3.2.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"fast-diff": "^1.2.0",
"fastify": "^2.11.0",
"json-bigint": "^1.0.0",
"kafkajs": "^1.11.0",
"kafkajs-snappy": "^1.1.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"mysql2": "^2.1.0",
"pg-minify": "^1.6.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/config": "^0.0.36",
"@types/debug": "^4.1.5",
"@types/expect": "^24.3.0",
"@types/json-bigint": "^1.0.0",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"alex": "^8.1.1",
"auto-changelog": "^1.16.2",
"chai": "^4.2.0",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"portfinder": "^1.0.23",
"prettier": "^1.19.1",
"prettier-markdown": "^0.1.8",
"progress": "^2.0.3",
"release-it": "^14.11.6",
"rimraf": "^3.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}