-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "quintoandar-kafka",
"version": "0.3.3",
"description": "Default Kafka NodeJS lib for QuintoAndar",
"main": "src/main.js",
"types": "types/index.d.ts",
"dependencies": {
"kafka-node": "^5.0.0",
"lodash": "^4.17.21",
"quintoandar-logger": "git+https://github.com/quintoandar/node-logger.git#3.3.61",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "2.25.3",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"tslint": "^6.1.3",
"tslint-config-semistandard": "^8.0.1",
"typescript": "^4.4.3"
},
"scripts": {
"test": "npm run eslint && jest --config jest.config.json --coverage --forceExit",
"eslint": "eslint ./ && npm run eslint:ts",
"eslint:ts": "tslint --project ./types/tsconfig.json --config ./types/tslint.json && tsc --project types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quintoandar/node-kafka.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/quintoandar/node-kafka/issues"
},
"homepage": "https://github.com/quintoandar/node-kafka#readme"
}