-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.35 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
{
"author": "Martin Wawrusch <martin@wawrusch.com> (https://www.linkedin.com/in/martinwawrusch)",
"name": "mongoose-plugins-acl",
"description": "Basic ACL (access control list) for mongoose.",
"version": "1.0.2",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/codedoctor/mongoose-plugins-acl.git"
},
"bin": {},
"directories": {
"lib": "./lib",
"test": "./test"
},
"keywords": [
"acl",
"mongoose",
"mongodb",
"plugin"
],
"scripts": {
"test": "node_modules/.bin/grunt test"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"hoek": "2.16.3",
"underscore": "1.8.3"
},
"peerDependencies": {
"mongoose": ">=4.0.0"
},
"devDependencies": {
"blanket": "1.1.7",
"codo": "2.0.11",
"coffee-script": "1.10.0",
"deep-equal": "1.0.1",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-concurrent": "2.0.3",
"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": "1.0.0",
"mocha": "2.3.3",
"mongoose": "4.1.11",
"should": "7.1.0"
},
"bugs": {
"url": "http://github.com/codedoctor/mongoose-plugins-acl/issues"
}
}