This repository was archived by the owner on Jun 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "schema-registry",
"version": "1.18.0",
"description": "json & avro schema registry",
"main": "index.js",
"scripts": {
"yarn:openssl": "LDFLAGS='-L/usr/local/opt/openssl/lib' CPPFLAGS='-I/usr/local/opt/openssl/include' yarn",
"test": "istanbul cover _mocha -- --recursive --timeout 12500 -R spec test/int && istanbul check-coverage --statements 60"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefluent/schema-registry.git"
},
"keywords": [
"schema",
"registry",
"avro",
"json",
"rest",
"kafka",
"living",
"version",
"etl",
"avsc",
"ajv",
"format",
"type"
],
"author": "Chris Froehlingsdorf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefluent/schema-registry/issues"
},
"homepage": "https://github.com/nodefluent/schema-registry#readme",
"dependencies": {
"ajv": "^6.10.0",
"avsc": "^5.4.11",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"commander": "^2.20.0",
"express": "^4.17.1",
"log4bro": "^3.10.0",
"request": "^2.88.0",
"sinek": "^7.29.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^6.1.4"
},
"preferGlobal": true,
"bin": {
"node-schema-registry": "bin/node-schema-registry.js",
"nsrc": "bin/nsrc.js"
}
}