forked from craftup/node-mongo-tenant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.4.0",
"description": "The mongo-tenant is a multi-tenancy plugin for mongoose.",
"author": "Craftup Coding Company <[email protected]>",
"contributors": [
"Alrik Zachert <[email protected]>",
"Henning Panke <[email protected]>"
],
"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.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"jshint": "^2.9.5",
"mocha": "^5.0.4",
"mocha-mongoose": "^1.2.0",
"mongodb": "^2.2.35",
"mongoose": "^5.0.11",
"nyc": "^11.6.0"
},
"peerDependencies": {
"mongoose": ">=4.3.0 <=4.8.0 || >=4.8.3"
}
}