forked from leodinas-hao/mongoose-query-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "@geekbears/gb-mongoose-query-parser",
"version": "1.0.0",
"description": "Convert url query string to MongooseJs friendly query object including advanced filtering, sorting, population, deep populaition, string template, type casting and many more...",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"compile": "npm run clean && tsc",
"prepublishOnly": "npm run compile",
"pretest": "npm run compile",
"test": "mocha ./lib/**/*.spec.js",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivan-rangel/mongoose-query-parser.git"
},
"keywords": [
"querystring",
"mongodb",
"mongoose",
"parser",
"url"
],
"author": "Ivan Rangel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ivan-rangel/mongoose-query-parser/issues"
},
"homepage": "https://github.com/ivan-rangel/mongoose-query-parser#readme",
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.170",
"@types/mocha": "^9.0.0",
"@types/node": "^15.12.1",
"chai": "^4.3.4",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.29.1"
},
"publishConfig": {
"access": "public"
}
}