-
Notifications
You must be signed in to change notification settings - Fork 628
/
package.json
77 lines (77 loc) · 1.96 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
69
70
71
72
73
74
75
76
77
{
"name": "kafka-node",
"description": "Client for Apache Kafka v0.9.x, v0.10.x and v0.11.x",
"keywords": [
"kafka",
"consumer",
"producer",
"broker"
],
"files": [
"kafka.js",
"logging.js",
"lib",
"types"
],
"bugs": "https://github.com/SOHU-co/kafka-node/issues",
"version": "5.0.0",
"main": "kafka.js",
"types": "types/index.d.ts",
"license": "MIT",
"dependencies": {
"async": "^2.6.2",
"binary": "~0.3.0",
"bl": "^2.2.0",
"buffer-crc32": "~0.2.5",
"buffermaker": "~1.2.0",
"debug": "^2.1.3",
"denque": "^1.3.0",
"lodash": "^4.17.4",
"minimatch": "^3.0.2",
"nested-error-stacks": "^2.0.0",
"optional": "^0.1.3",
"retry": "^0.10.1",
"uuid": "^3.0.0"
},
"engines": {
"node": ">=8.5.1"
},
"optionalDependencies": {
"snappy": "^6.0.1"
},
"devDependencies": {
"@types/node": "^10.12.27",
"coveralls": "^2.11.12",
"doctoc": "^1.2.0",
"eslint": "^5.14.1",
"eslint-config-semistandard": "^13.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-dependencies": "^2.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"execa": "^0.6.1",
"istanbul": "^0.4.4",
"mocha": "^3.1.0",
"optimist": "^0.6.1",
"proxyquire": "^1.7.10",
"should": "^6.0.0",
"sinon": "^2.0.0",
"through2": "^2.0.3",
"tslint": "^5.13.0",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^2.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/SOHU-Co/kafka-node.git"
},
"scripts": {
"test:ts": "tslint --project ./types/tsconfig.json --config ./types/tslint.json && tsc --project types",
"test": "eslint . && npm run test:ts && ./run-tests.sh",
"startDocker": "./start-docker.sh",
"stopDocker": "docker-compose down",
"updateToc": "doctoc README.md --maxlevel 2 --notitle"
}
}