-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
38 lines (38 loc) · 925 Bytes
/
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
{
"name": "elasticsearch-writable-stream",
"version": "2.0.1",
"description": "A writable stream for doing operations in Elasticsearch",
"main": "index.js",
"scripts": {
"test": "eslint . && istanbul cover --print both _mocha test",
"preversion": "jsdoc2md index.js > api.md"
},
"author": "Espen Volden <voldern@hoeggen.net>",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^1.7.3",
"eslint-config-vgno": "^4.0.1",
"istanbul": "^0.4.0",
"jsdoc-to-markdown": "^1.2.0",
"mocha": "^3.0.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"flushwritable": "^1.0.0",
"lodash": "^4.6.1"
},
"repository": {
"type": "git",
"url": "git@github.com:voldern/elasticsearch-writable-stream.git"
},
"keywords": [
"elasticsearch",
"stream",
"writable",
"write",
"bulk",
"update_by_query"
]
}