-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.json
50 lines (50 loc) · 1.64 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
{
"name": "@kafkajs/confluent-schema-registry",
"version": "3.6.0",
"main": "dist/index.js",
"description": "ConfluentSchemaRegistry is a library that makes it easier to interact with the Confluent schema registry, it provides convenient methods to encode, decode and register new schemas using the Apache Avro serialization format.",
"keywords": [
"confluent schema registry",
"kafka"
],
"repository": {
"type": "git",
"url": "https://github.com/kafkajs/confluent-schema-registry.git"
},
"scripts": {
"prepare:release": "./pipeline/prepareRelease.sh",
"build": "rm -rf ./dist && tsc",
"build:watch": "rm -rf ./dist && tsc --watch",
"test:unit:watch": "yarn test:unit --watch",
"test:unit": "jest",
"test": "docker compose up -d --wait schemaRegistry && jest",
"lint": "eslint './src/**/*.ts'",
"check:types": "tsc --noEmit",
"format": "yarn lint --fix"
},
"dependencies": {
"ajv": "^7.1.0",
"avsc": ">= 5.4.13 < 6",
"mappersmith": ">= 2.44.0 < 3",
"protobufjs": ">= 6.11.4 < 8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.70",
"@types/prettier": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"@typescript-eslint/typescript-estree": "^2.1.0",
"ajv8": "npm:ajv@^8.6.3",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-no-only-tests": "^2.3.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^29.7.0",
"prettier": "^1.18.2",
"ts-jest": "^29.2.5",
"ts-node": "^8.3.0",
"typescript": "^5.7.3",
"uuid": "^11.0.5"
}
}