forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (49 loc) · 1.31 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.3.0",
"tags": [
"mongodb",
"elasticsearch",
"elastic search",
"mongoose",
"full text search"
],
"repository": {
"type": "git",
"url": "git://github.com/mongoosastic/mongoosastic"
},
"main": "lib/mongoosastic.js",
"dependencies": {
"elasticsearch": "14.1.0",
"lodash.clonedeep": "4.5.0"
},
"devDependencies": {
"async": "2.5.0",
"changelog": "^1.0.7",
"co-mocha": "^1.1.3",
"coveralls": "2.13.1",
"eslint": "4.4.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"should": "12.0.0",
"mongoose": "4.11.8",
"standard": "10.0.3"
},
"engines": {
"node": ">= 4.0"
},
"scripts": {
"authors": "./scripts/update_authors.sh",
"lint": "eslint lib test",
"mocha": "mocha test/*-test.js",
"test": "npm run lint && istanbul cover _mocha --report lcovonly -- test/*-test.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"changelog": "changelog mongoosastic/mongoosastic latest -m"
},
"license": "MIT"
}