-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "@theagilemonkeys/plasmido-schema-registry",
"version": "0.1.5",
"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/theam/plasmido-schema-registry"
},
"homepage": "http://www.plasmido.com",
"license": "Apache-2.0",
"author": "TheAgileMonkeys - Gonzalo García Jaubert <[email protected]>",
"productName": "Plasmido Schema Registry",
"scripts": {
"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",
"publish": "clean-publish --without-publish"
},
"clean-publish": {
"files": [
"plasmido-schema-registry.iml",
".idea",
"fixtures"
]
},
"dependencies": {
"ajv": "^7.1.0",
"avsc": ">= 5.4.13 < 6",
"mappersmith": ">= 2.30.1 < 3",
"protobufjs": "^6.10.1"
},
"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",
"ajv8": "npm:ajv@^8.6.3",
"clean-publish": "^3.0.3",
"dockest": "^2.1.0",
"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"
}
}