-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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": "@relinklabs/leni",
"version": "0.0.9",
"description": "Thin wrapper around kafka-node. Streams! Promise-based setup.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha lib/**/*.spec.js",
"compile": "node_modules/babel-cli/bin/babel.js src -d lib -s inline",
"tdd": "node_modules/.bin/mocha src/**/*.spec.js --compilers js:babel-register --watch --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Relink/leni.git"
},
"keywords": [
"kafka",
"node"
],
"author": "relinklabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/Relink/leni/issues"
},
"homepage": "https://github.com/Relink/leni#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"@relinklabs/eddies": "*",
"bluebird": "^3.3.1",
"kafka-node": "git+https://github.com/SOHU-Co/kafka-node.git",
"lodash": "^4.5.0",
"no-kafka": "^2.4.2"
},
"directories": {
"test": "test"
}
}