-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "mongoose-autopopulate",
"version": "1.1.0",
"description": "Always populate() certain fields in your mongoose schemas",
"main": "index.js",
"homepage": "https://github.com/mongodb-js/mongoose-autopopulate",
"scripts": {
"docs": "acquit-markdown -r acquit-ignore -p ./test/integration.js > examples.md",
"lint": "eslint .",
"test": "mocha ./test/*.js",
"test-integration": "mocha ./test/integration.js",
"test-travis": "nyc --reporter=lcov npm test && nyc check-coverage --lines 80 --functions 80 --branches 80"
},
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/mongoose-autopopulate.git"
},
"keywords": [
"mongoose",
"populate",
"autopopulate",
"mongodb"
],
"devDependencies": {
"acquit": "1.0.0",
"acquit-ignore": "0.0.3",
"acquit-markdown": "0.1.0",
"eslint": "7.32.0",
"mocha": "5.1.1",
"mongoose": "8.x",
"nyc": "11.7.3"
},
"peerDependencies": {
"mongoose": "6.x || 7.x || 8.x"
},
"types": "./index.d.ts",
"author": "Valeri Karpov <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/mongodb-js/mongoose-autopopulate/issues"
}
}