forked from mblarsen/mongoose-hidden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "mongoose-hidden",
"version": "1.5.0",
"author": "Michael Bøcker-Larsen <[email protected]>",
"description": "Hides certain model properties when invoking toJSON or toObject.",
"keywords": [
"mongoose",
"hidden",
"hide",
"property",
"schema",
"password",
"id"
],
"repository": {
"type": "git",
"url": "https://github.com/mblarsen/mongoose-hidden.git"
},
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v && rm -rf ./coverage",
"mocha": "./node_modules/mocha/bin/_mocha",
"preversion": "npm run mocha",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"bugs": "http://github.com/mblarsen/mongoose-hidden/issues",
"dependencies": {
"debug": "^3.0.1",
"mpath": "^0.3.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"istanbul": "^0.4.2",
"mocha": "^4.0.0",
"mongoose": "^4.11",
"should": "^13.1.0"
}
}