-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
60
61
62
63
{
"name": "@mother/mongoose-cursor-pagination",
"version": "0.0.6",
"description": "Easy-to-use, scalable, cursor pagination plugin for mongoose",
"license": "MIT",
"homepage": "https://github.com/mother/mongoose-cursor-pagination#readme",
"author": "Mother Co <hello@mother.co>",
"keywords": [
"mongoose",
"mongo",
"mongodb",
"paginate",
"pagination",
"cursor",
"graphql"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mother/mongoose-cursor-pagination.git"
},
"bugs": {
"url": "https://github.com/mother/mongoose-cursor-pagination/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"lint": "git diff HEAD --name-only --diff-filter=ACM | grep '.js$' | xargs node ./node_modules/eslint/bin/eslint.js --quiet",
"lint-full": "node ./node_modules/eslint/bin/eslint.js .",
"test": "jest --config ./tests/config/index.js"
},
"husky": {
"hooks": {
"post-merge": "npm install",
"post-receive": "npm install",
"post-rewrite": "npm install",
"pre-commit": "npm run lint && npm audit"
}
},
"devDependencies": {
"eslint-config-mother": "^2.0.15",
"eslint-plugin-jest": "^23.9.0",
"husky": "^1.3.1",
"jest": "^27.0.6",
"mongodb-memory-server": "^6.5.2",
"mongoose": "^5.13.6"
},
"peerDependencies": {
"mongoose": ">=5.0.0"
},
"dependencies": {
"base64-url": "^2.3.3",
"lodash.get": "^4.4.2"
}
}