This repository was archived by the owner on Nov 12, 2021. It is now read-only.
forked from kpfromer/nestjs-typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@robinwongm/nestjs-typegoose",
"version": "5.2.1",
"description": "A nestjs module wrapper for typegoose",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"test": "jest",
"test:ci": "jest --forceExit",
"test:cov": "jest --coverage --forceExit",
"test:e2e": "jest --config ./test/jest-e2e.json",
"coverage": "npm test:cov && cat ./coverage/lcov.info | coveralls"
},
"author": "Kyle Pfromer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robinWongM/nestjs-typegoose"
},
"peerDependencies": {
"mongoose": "^5.5.13",
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.3.1",
"@robinwongm/typegoose": "^5.7.1"
},
"dependencies": {
"is-class": "^0.0.7",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^6.3.1",
"@nestjs/core": "^6.3.1",
"@nestjs/testing": "^6.3.1",
"@types/jest": "^24.0.13",
"@types/mongoose": "^5.5.5",
"@types/supertest": "^2.0.4",
"body-parser": "latest",
"coveralls": "^3.0.0",
"express": "latest",
"jest": "^24.8.0",
"mockgoose": "latest",
"mongoose": "^5.1.8",
"rimraf": "^2.6.3",
"rxjs": "^6.1.0",
"supertest": "latest",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"@robinwongm/typegoose": "^5.2.1",
"typescript": "3.5.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"resetMocks": true,
"testEnvironment": "node"
}
}