-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1022 Bytes
/
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-lean-id",
"version": "1.0.0",
"description": "Attach `id` to the results of mongoose queries when using `.lean()`",
"main": "index.js",
"scripts": {
"docs": "node ./docs",
"test": "mocha ./test/*.js",
"test-integration": "mocha ./test/integration.js",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/vkarpov15/mongoose-lean-id.git"
},
"keywords": [
"mongoose",
"lean",
"id",
"mongodb"
],
"devDependencies": {
"acquit": "1.x",
"acquit-ignore": "0.1.x",
"acquit-markdown": "0.1.x",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"mongoose": "8.x"
},
"peerDependencies": {
"mongoose": "7.x || 8.x"
},
"author": "Valeri Karpov <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/vkarpov15/mongoose-lean-id/issues"
},
"homepage": "https://github.com/vkarpov15/mongoose-lean-id"
}