forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"author": "James R. Carr <[email protected]> (http://blog.james-carr.org)",
"name": "mongoosastic",
"description": "A mongoose plugin that indexes models into elastic search",
"version": "4.5.1",
"tags": [
"mongodb",
"elasticsearch",
"elastic search",
"mongoose",
"full text search"
],
"repository": {
"type": "git",
"url": "git://github.com/mongoosastic/mongoosastic"
},
"main": "lib/mongoosastic.js",
"dependencies": {
"elasticsearch": "16.3.0",
"lodash.clonedeep": "4.5.0"
},
"devDependencies": {
"async": "3.1.0",
"changelog": "1.4.2",
"co-mocha": "1.2.2",
"coveralls": "3.0.6",
"eslint": "6.3.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"istanbul": "0.4.5",
"mocha": "6.2.0",
"mongoose": "5.7.0",
"should": "13.2.3",
"standard": "14.2.0"
},
"engines": {
"node": ">= 8.0"
},
"scripts": {
"authors": "./scripts/update_authors.sh",
"lint-fix": "npm run lint -- --fix",
"lint": "eslint lib test",
"mocha": "istanbul cover _mocha --report lcovonly -- test/*-test.js",
"test": "npm run lint && npm run mocha",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "changelog mongoosastic/mongoosastic latest -m"
},
"license": "MIT"
}