-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "kafka-observable",
"version": "0.0.3",
"description": "kafka consumer and producer as observables",
"main": "index.js",
"scripts": {
"prepublish": "npm test",
"test": "npm run unit-test",
"clean": "rm -rf ./node_modules ./out ./coverage",
"gen-docs": "node_modules/.bin/jsdoc -r -R README.md -P package.json index.js lib/observables/* lib/operators/*",
"coverage": "JASMINE_CONFIG_PATH=test/support/unit.json node_modules/.bin/istanbul cover --include-all-sources node_modules/.bin/jasmine",
"unit-test": "JASMINE_CONFIG_PATH=test/support/unit.json node_modules/.bin/jasmine",
"integration-test": "LOG_LEVEL=trace JASMINE_CONFIG_PATH=test/support/integration.json node_modules/.bin/jasmine"
},
"engines": {
"node": ">=6.4.0"
},
"keywords": [
"kafka",
"rx",
"observable"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ghermeto/kafka-observable.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"bunyan": "^1.8.12",
"no-kafka": "^3.2.6",
"rxjs": "^5.5.2",
"shortid": "^2.2.8"
},
"devDependencies": {
"dockerode": "^2.5.3",
"istanbul": "^0.4.5",
"jasmine": "^2.8.0",
"jsdoc": "^3.5.5",
"mock-require": "^2.0.2"
}
}