-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "kafka-confluent-avro",
"version": "1.3.0",
"main": "lib/index.js",
"author": "Konstanin Knyazev <[email protected]>",
"description": "Kafka Confluent Schema Registry with only avro serializer. Only can operate with previously created schemas",
"repository": {
"type": "git",
"url": "https://github.com/sckv/kafka-confluent-avro.git"
},
"bugs": {
"url": "https://github.com/sckv/kafka-confluent-avro/issues"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"keywords": [
"nodejs",
"kafka",
"confluent-registry"
],
"license": "MIT",
"dependencies": {
"avsc": "^5.7.4",
"lru-cache": "^7.13.2",
"undici": "^5.8.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@types/node-fetch": "^2.6.1",
"code-concierge": "^1.0.3",
"conventional-changelog-conventionalcommits": "^4.6.3",
"kafkajs": "^1.16.0",
"semantic-release": "^19.0.2",
"testcontainers": "^8.6.1"
},
"scripts": {
"compile": "tsc",
"build": "rimraf ./lib && tsc -p tsconfig.build.json",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prettify": "prettier --write \"./src/**/*.{ts,tsx}\"",
"release": "semantic-release -e ./.releaserc.json",
"test": "jest --runInBand --coverage",
"test:watch": "jest --runInBand --watch"
}
}