forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"author": "James R. Carr <james.r.carr@gmail.com> (http://blog.james-carr.org)",
"name": "mongoosastic",
"description": "A mongoose plugin that indexes models into elastic search",
"version": "4.0.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": "^10.1.3",
"lodash.clonedeep": "^4.3.2"
},
"devDependencies": {
"async": "^1.5.2",
"babel-eslint": "^4.1.8",
"changelog": "^1.0.7",
"coveralls": "^2.11.6",
"eslint": "^1.10.0",
"eslint-config-airbnb": "^5.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mongoose": "^4.4.3",
"should": "^8.2.2"
},
"engines": {
"node": ">= 4.0"
},
"scripts": {
"authors": "./scripts/update_authors.sh",
"lint": "eslint lib",
"mocha": "mocha test/*-test.js -R spec -t 600000",
"test": "npm run lint && npm run coverage",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/*-test.js -t 600000 && cat ./coverage/lcov.info | coveralls",
"changelog": "changelog mongoosastic/mongoosastic latest -m"
},
"license": "MIT"
}