-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 999 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 999 Bytes
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
{
"name": "@cheevr/database",
"version": "1.1.12",
"description": "A database utililty to facilitate accessing Elasticsearch",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Cheevr/Database.git"
},
"keywords": [
"elasticsearch",
"cache",
"mapping",
"database"
],
"author": "Ravi Gairola <ravi@cheevr.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cheevr/Database/issues"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"chai": "^4",
"coveralls": "^2",
"express": "^4",
"mocha": "^3",
"nock": "^9",
"nyc": "^11"
},
"dependencies": {
"@cheevr/cache": "^1",
"@cheevr/config": "^1",
"@cheevr/logging": "^1",
"elasticsearch": "^13",
"lodash": "^4",
"moment": "^2"
}
}