forked from 352Media/mongoose-authorization
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "mongoose-authz",
"version": "2.0.0-11",
"engines": {
"node": ">=8.3.0"
},
"description": "Data level authorization for Mongoose",
"main": "index.js",
"scripts": {
"test": "nodeunit test/*.test.js && ava **/__tests__/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devcolor/mongoose-authz.git"
},
"keywords": [
"mongoose",
"authorization",
"mongo",
"mongodb",
"mongoose authorization",
"mongo authorization",
"mongodb authorization",
"mongoose auth",
"mongo auth",
"mongodb auth",
"mongoose permissions",
"mongo permissions",
"mongodb permissions"
],
"author": "Makinde Adeagbo",
"license": "ISC",
"bugs": {
"url": "https://github.com/devcolor/mongoose-authz/issues"
},
"homepage": "https://github.com/devcolor/mongoose-authz#readme",
"dependencies": {
"lodash": "4.17.20"
},
"peerDependencies": {
"mongoose": "^5.0.0"
},
"devDependencies": {
"ava": "3.11.1",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.9.0",
"mongodb": "3.5.5",
"mongodb-memory-server": "6.4.1",
"mongoose": "5.6.12",
"nodeunit": "0.11.3"
},
"optionalDependencies": {}
}