-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "mongoose-multitenant",
"version": "0.8.1",
"description": "Wrapper for Mongoose that allows for easy horizontal multitenancy (collection prefix per tenant)",
"repository" : {
"type" : "git",
"url" : "https://github.com/jraede/mongoose-multitenant.git"
},
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"author": "Jason Raede <[email protected]>",
"keywords": [
"mongodb",
"mongoose",
"mongo",
"multitenancy",
"multi-tenancy",
"multitenant",
"multi-tenant"
],
"homepage": "https://github.com/jraede/mongoose-multitenant",
"contributors": [
"Jason Raede <[email protected]>"
],
"license": "MIT",
"dependencies": {
"mongoose-schema-extend": "~0.1.7",
"dot-component": "~0.1.0",
"underscore": "~1.5.2",
"owl-deepcopy": "0.0.2"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-exec": "~0.4.3",
"grunt-contrib-coffee": "~0.8.0",
"grunt-sed": "~0.1.1",
"semver": "~2.2.1",
"should": "~2.1.1",
"mongoose": "~3.8.3"
},
"peerDependencies": {
"mongoose": ">=3.x"
}
}