-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "mongo-tenant",
"version": "1.8.0",
"description": "The mongo-tenant is a multi-tenancy plugin for mongoose.",
"author": "RealMQ GmbH <service@realmq.com>",
"contributors": [
"Alrik Zachert <alrik@realmq.com>",
"Henning Panke <henning@realmq.com>"
],
"keywords": [
"multi-tenancy",
"multitenancy",
"multi-tenant",
"multitenant",
"mongoose",
"mongodb",
"mongo"
],
"scripts": {
"hint": "jshint .",
"test": "mocha --exit",
"test-and-cover": "nyc --reporter=html --reporter=text npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"validate-release-notes": "release-notes validate"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/craftup/node-mongo-tenant/issues"
},
"repository": {
"url": "https://github.com/craftup/node-mongo-tenant"
},
"license": "MIT",
"devDependencies": {
"@release-notes/cli": "^0.3.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"jshint": "^2.11.1",
"mocha": "^5.2.0",
"mocha-mongoose": "^1.2.0",
"mongodb": "^2.2.36",
"mongoose": "^5.9.23",
"nyc": "^11.9.0"
},
"peerDependencies": {
"mongoose": ">=4.3.0 <=4.8.0 || >=4.8.3"
}
}