-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·76 lines (76 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "Martin Wawrusch <[email protected]> (http://martinatsunset.com)",
"name": "mongoose-oauth-store-multi-tenant",
"description": "A bunch of mongoose schemas to implement identity management (accesstokens, oauth apps) in multi tenant scenarios.",
"version": "2.0.1",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/codedoctor/mongoose-oauth-store-multi-tenant.git"
},
"bin": {},
"directories": {
"lib": "./lib",
"test": "./test"
},
"keywords": [
"mongoose",
"identity",
"user",
"oauth2"
],
"scripts": {
"test": "node_modules/.bin/grunt testandcoverage",
"docs": "node_modules/.bin/codo -i ./src -o ./docs"
},
"dependencies": {
"async": "1.4.2",
"boom": "2.8.0",
"date-utils": "1.2.17",
"hoek": "2.14.0",
"mongoose-plugins-accessible-by": "0.2.x",
"mongoose-plugins-created-by": "0.4.x",
"mongoose-plugins-delete-paranoid": "0.2.x",
"mongoose-plugins-resource-limits": "0.2.x",
"mongoose-plugins-tags-simple": "0.2.x",
"mongoose-plugins-timestamp": "0.2.x",
"mongoose-rest-helper": "2.0.1",
"passgen": "1.0.1",
"underscore": "1.8.3"
},
"peerDependencies": {
"mongoose": ">=4.1.3"
},
"devDependencies": {
"blanket": "1.1.7",
"codo": "2.0.11",
"coffee-script": "1.9.3",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-codo": "0.2.0",
"grunt-contrib-coffee": "0.13.0",
"grunt-contrib-watch": "0.6.1",
"grunt-env": "0.4.4",
"grunt-mocha-cov": "0.4.0",
"grunt-mocha-test": "0.12.7",
"grunt-release": "0.13.0",
"grunt-shell": "1.1.2",
"matchdep": "0.3.0",
"mocha": "2.3.0",
"mongoose": "4.1.5",
"mongoskin": "1.4.13",
"should": "7.1.0"
},
"bugs": {
"url": "http://github.com/codedoctor/mongoose-oauth-store-multi-tenant/issues"
},
"config": {
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": "node_modules"
}
}
}