forked from mongoosastic/mongoosastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 KB
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
{
"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": "3.6.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": "^8.2.0"
},
"devDependencies": {
"async": "^1.4.2",
"babel-eslint": "^4.1.6",
"coveralls": "^2.11.4",
"eslint": "^1.5.1",
"eslint-config-airbnb": "^2.1.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"should": "^7.1.0",
"mongoose": "^4.1.8"
},
"engines": {
"node": ">= 0.10.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 ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/*-test.js -t 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"license": "MIT"
}