-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
77 lines (77 loc) · 1.74 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-rest-client",
"description": "Kafka rest client to produce json/binary messages",
"version": "1.11.7",
"contributors": [
"Xiang Fu <[email protected]>"
],
"main": "./index.js",
"dependencies": {
"error": "^7.0.1",
"lb_pool": "^1.7.1",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"@sinonjs/formatio": "^2.0.0",
"async": "^1.5.2",
"buffertools": "*",
"chai": "*",
"glob": "*",
"istanbul": "0.1.46",
"itape": "^1.5.0",
"jscoverage": "*",
"jscs": "^1.7.3",
"jshint": "^2.9.5",
"mocha": "*",
"mockery": "*",
"nodemock": "*",
"opn": "^0.1.2",
"pre-commit": "0.0.9",
"proxyquire": "*",
"rewire": "3.0.2",
"should": "*",
"sinon": "~1.7.3",
"tape": "^4.2.0",
"uber-licence": "^1.2.0",
"uber-standard": "^5.1.0"
},
"license": "MIT",
"scripts": {
"add-licence": "uber-licence",
"check-licence": "uber-licence --dry",
"test": "node test/index",
"lint": "standard --reporter stylish -v",
"jshint": "jshint --verbose .",
"jshint-pre-commit": "jshint --verbose $(git diff --cached --name-only | grep '\\.js$')",
"cover": "istanbul cover test/index.js",
"check-cover": "istanbul check-coverage",
"report": "istanbul report cobertura",
"view-cover": "opn ./coverage/*/index.html"
},
"engine": {
"node": ">= 0.10.32"
},
"engines": {
"node": ">= 0.10.32"
},
"pre-commit": [
"check-licence",
"lint",
"jshint",
"jshint-pre-commit"
],
"pre-commit.silent": true,
"repository": {
"type": "git",
"url": "[email protected]:uber/node-kafka-rest-client.git"
},
"keywords": [
"kafka",
"rest",
"proxy",
"logger"
],
"standard": {
"ignore": []
}
}