-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mongoose-multitenancy",
"version": "0.1.19",
"description": "The best of both worlds Mongoose.discriminator & mongoose-multitenant",
"main": "src/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec test/main.js",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"engines": {
"node": ">=4.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jorgecuesta/mongoose-multitenancy.git"
},
"keywords": [
"mongodb",
"mongoose",
"multitenant",
"multitenancy",
"discriminator",
"mongo"
],
"author": "Jorge S. Cuesta <[email protected]>",
"contributors": [
"Jeffrey Soriano <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jorgecuesta/mongoose-multitenancy/issues"
},
"homepage": "https://github.com/jorgecuesta/mongoose-multitenancy#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"mocha-mongoose": "^1.2.0",
"mongoose": "^4.5.0",
"travis-cov": "^0.2.5"
},
"peerDependencies": {
"mongoose": "^4.x.x"
},
"config": {
"travis-cov": {
"threshold": 100
}
},
"dependencies": {
"async": "^2.0.0-rc.5",
"debug": "^2.6.8",
"mongoose-locale": "^1.0.4"
}
}