-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 KB
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-avro",
"version": "1.0.4",
"description": "KafkaJS + unopinionated Avro encoding/decoding based on subject and version",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "yarn lint && ./scripts/testWithKafka.sh 'jest --forceExit --detectOpenHandles --ci --maxWorkers=4 --no-watchman'",
"test:watch": "./scripts/testWithKafka.sh 'jest --watch --forceExit --detectOpenHandles --maxWorkers=4 --no-watchman'",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"docker:up": "./scripts/dockerComposeUp.sh",
"docker:down": "docker-compose down",
"lint": "prettier --parser typescript --list-different \"**/*.{ts,tsx}\"",
"format": "prettier --parser typescript --write \"**/*.{ts,tsx}\""
},
"keywords": [
"avro",
"kafkajs",
"kafka",
"decode",
"encode"
],
"author": "Ivo Sequeros",
"license": "GPL-3.0",
"dependencies": {
"@types/kafkajs": "^1.4.1",
"avsc": "^5.4.7",
"kafkajs": "^1.7.0",
"node-fetch": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ivosequeros/node-kafkajs-avro.git"
},
"homepage": "https://github.com/ivosequeros/node-kafkajs-avro",
"bugs": {
"url": "https://github.com/ivosequeros/node-kafkajs-avro/issues"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.4",
"@types/uuid": "^3.4.4",
"execa": "^1.0.0",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"uuid": "^3.3.2"
}
}