forked from d38u6/nestjs-mongoose-exclude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
53
54
55
56
{
"name": "nestjs-mongoose-exclude",
"version": "1.0.5",
"description": "Exclude selected properties from your mongoose document",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jest.config.json",
"build": "tsc --p tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm run format && npm run lint && npm test",
"preversion": "npm run format && npm run lint && npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d38u6/nestjs-mongoose-exclude.git"
},
"keywords": [
"nestjs",
"mongoose",
"schema",
"exclude",
"model",
"mongo",
"class-transformer"
],
"author": "d38u6",
"license": "ISC",
"bugs": {
"url": "https://github.com/d38u6/nestjs-mongoose-exclude/issues"
},
"homepage": "https://github.com/d38u6/nestjs-mongoose-exclude#readme",
"devDependencies": {
"@nestjs/common": "^7.6.13",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"mongoose": "^5.11.19",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.6",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}