forked from leodinas-hao/mongoose-query-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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.1.4",
"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",
"pretest": "npm run compile",
"test": "mocha ./lib/**/*.spec.js",
"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": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {
"lodash": "^4.17.10",
"moment": "^2.22.2"
}
}