-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"name": "mongoose-protector",
"version": "0.1.5",
"description": "An attribute level access control module. Protects resources as one would expect from regular ACL, but allows for configuration to protect attributes of a given resource.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/matt-ward/node-protector.git"
},
"keywords": [
"acl",
"mongoose"
],
"author": "Matt Ward <ward.matthewr@gmail.com> (http://mattwardsoftware.wordpress.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-ward/node-protector/issues"
},
"homepage": "https://github.com/matt-ward/node-protector",
"devDependencies": {
"chai": "^1.9.1",
"colors": "^0.6.2",
"express": "^4.3.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-test": "^0.10.2",
"mongoose": "^3.8.11"
},
"dependencies": {
"colors": "^0.6.2",
"mongoose": "^3.8.12"
}
}