-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "nest-mongo-query-parser",
"version": "1.0.13",
"description": "A MongoDB query string parser to be used in applications developed with NestJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"package": "npm run build && npm pack"
},
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucasrochagit/nest-mongo-query-parser.git"
},
"keywords": [
"nest",
"nestjs",
"query",
"querystring",
"parser"
],
"author": "Lucas Cosmo Rocha",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/lucasrochagit/nest-mongo-query-parser/issues"
},
"homepage": "https://github.com/lucasrochagit/nest-mongo-query-parser#readme",
"dependencies": {
"@nestjs/common": "^8.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"@types/node": "^18.11.19",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@nestjs/common": "^9.3.3"
}
}