This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
forked from kafkajs/confluent-schema-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.7 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
{
"name": "@kafkajs/confluent-schema-registry",
"version": "1.0.6",
"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": "ts-node ./dockest.ts",
"test:debug": "ts-node ./dockest.ts debug",
"lint": "eslint './src/**/*.ts'",
"format": "yarn lint --fix"
},
"dependencies": {
"avsc": ">= 5.4.13 < 6",
"mappersmith": ">= 2.30.1 < 3"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^25.2.1",
"@types/node": "^12.7.3",
"@types/prettier": "^1.18.2",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"@typescript-eslint/typescript-estree": "^2.1.0",
"dockest": "^1.0.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",
"execa": "^2.0.4",
"fs-extra": "^8.1.0",
"jest": "^25.2.7",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.6.2",
"uuid": "^3.3.3"
}
}