-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1016 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
39
{
"name": "@clearcodehq/elasticsearch-simplified",
"version": "2.0.1",
"description": "Simplifies connection retry logic to Elasticsearch v6.",
"main": "src/elasticsearch-connector.js",
"scripts": {
"test:unit": "mocha src/tests/unit --exit",
"test:unit-watch": "nodemon --exec 'npm run test:unit'",
"lint": "eslint .",
"linter-fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/ClearcodeHQ/npm-elasticsearch-simplified"
},
"keywords": [
"elasticsearch"
],
"contributors": [
"Paweł Michalik",
"Łukasz Duda",
"Staszek Cieślicki"
],
"license": "MIT",
"dependencies": {
"@clearcodehq/synchronous-timeout": "^0.9.0",
"@elastic/elasticsearch": "^6.8.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.2",
"proxyquire": "^2.0.0",
"sinon": "^4.5.0"
}
}