forked from leodinas-hao/mongoose-query-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "mongoose-query-parser",
"version": "1.2.1",
"description": "Convert url query string to MongooseJs friendly query object including advanced filtering, sorting, population, 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",
"test": "mocha --config '.mocha.yml'",
"lint": "tslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leodinas-hao/mongoose-query-parser.git"
},
"keywords": [
"querystring",
"mongodb",
"mongoose",
"parser",
"url"
],
"author": "Leodinas Hao",
"license": "MIT",
"bugs": {
"url": "https://github.com/leodinas-hao/mongoose-query-parser/issues"
},
"homepage": "https://github.com/leodinas-hao/mongoose-query-parser#readme",
"devDependencies": {
"@testdeck/mocha": "^0.1.2",
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.170",
"@types/luxon": "^1.26.5",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"dependencies": {
"lodash": "^4.17.21",
"luxon": "^1.27.0"
}
}