-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "kafka-sse",
"version": "0.4.3",
"description": "KafkaSSE - Kafka Consumer to HTTP SSE/EventSource",
"main": "index.js",
"scripts": {
"start": "./server.js | ./node_modules/bunyan/bin/bunyan",
"test": "npm run test-jenkins",
"kafka-install": "./test/utils/kafka_install.sh",
"kafka-start": "./test/utils/kafka.sh start",
"kafka-stop": "./test/utils/kafka.sh stop",
"kafka-fixture": "./test/utils/kafka_fixture.sh",
"mocha": "export UV_THREADPOOL_SIZE=128; mocha",
"coverage": "export UV_THREADPOOL_SIZE=128 && ./node_modules/istanbul/lib/cli.js cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-local": "npm run kafka-fixture && npm run coverage",
"test-jenkins": "npm run kafka-install && npm run kafka-stop && npm run kafka-start && npm run kafka-fixture && npm run coverage && npm run kafka-stop",
"test-docker": "./test/docker-tests.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/wikimedia/KafkaSSE.git"
},
"keywords": [
"kafka",
"http",
"sse",
"eventsource",
"stream"
],
"author": "Andrew Otto <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wikimedia/KafkaSSE/issues"
},
"homepage": "https://github.com/wikimedia/KafkaSSE#readme",
"dependencies": {
"bluebird": "^3.5.1",
"bunyan": "^1.8.1",
"lodash": "^4.15.0",
"node-rdkafka": "^2.3.4",
"safe-regex": "^1.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"istanbul": "^0.4.4",
"jscs": "^3.0.7",
"mocha": "^2.5.3",
"mocha-jscs": "^5.0.1",
"mocha-jshint": "^2.3.1",
"coveralls": "^2.11.11",
"mocha-lcov-reporter": "^1.2.0",
"nsp": "^2.6.1",
"eventsource": "^0.2.1",
"node-fetch": "^1.6.3",
"sinon": "^1.17.6"
}
}