-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "mongo-pager",
"version": "0.0.1",
"description": "Support for paging queries of MongoDB collections.",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matsaleh13/mongo-pager.git"
},
"keywords": [
"mongo",
"mongoose",
"query",
"find",
"paging",
"collection"
],
"author": "Matthew C. Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/matsaleh13/mongo-pager/issues"
},
"homepage": "https://github.com/matsaleh13/mongo-pager#readme",
"dependencies": {
"@types/lodash": "^4.14.69",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.7",
"@types/node": "^8.0.13",
"chai": "^4.1.0",
"eslint": "^4.2.0",
"mocha": "^3.4.2",
"mongo-mock": "^2.4.0",
"mongodb": "^2.2.30",
"mongoose": "^4.11.3",
"typescript": "^2.4.1",
"typescript-eslint-parser": "^4.0.0"
}
}