forked from aravindnc/mongoose-paginate-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mongoose-paginate-v2",
"version": "1.7.1",
"description": "A custom pagination library for Mongoose with customizable labels.",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "npm run build",
"test": "./node_modules/.bin/mocha tests/*.js -R spec --ui bdd --timeout 9999999",
"build": "babel src -d dist",
"lint": "./node_modules/.bin/eslint \"tests\" \"src\" \".eslintrc.js\" --fix",
"prettier": "./node_modules/.bin/prettier --write \"{src,tests}/**/*.js\" \"*.md\"",
"prepublish": "npm run test"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/lint-staged"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"./node_modules/.bin/prettier --write"
],
"*.md": [
"./node_modules/.bin/prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aravindnc/mongoose-paginate-v2.git"
},
"keywords": [
"mongoose",
"pagination",
"plugin",
"mongodb",
"paginate",
"paging",
"next",
"prev",
"nextpage",
"prevpage",
"total",
"paginator",
"plugin",
"helper"
],
"author": "Aravind NC <aravind_n_c@yahoo.co.in> (https://aravindnc.com)",
"contributors": [
"Fernando López Guevara (fernando.lguevara@gmail.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aravindnc/mongoose-paginate-v2/issues"
},
"homepage": "https://github.com/aravindnc/mongoose-paginate-v2#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.14.7",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"mongoose": "^5.13.2",
"prettier": "^2.3.2",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=4.0.0"
}
}