-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.8 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
69
70
71
72
73
74
75
76
{
"name": "nest-resend",
"version": "3.0.0",
"description": "NestJS Resend Library",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"test": "npm run test:unit",
"test:cov": "jest --coverage",
"test:unit": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pragmaticivan/nest-resend.git"
},
"keywords": [
"nestjs",
"resend"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pragmaticivan/nest-resend/issues"
},
"homepage": "https://github.com/pragmaticivan/nest-resend#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/platform-fastify": "^10.3.10",
"@nestjs/testing": "^10.3.10",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"reflect-metadata": "^0.2.2",
"resend": "^3.4.0",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.5",
"typescript": "5.5.3"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/core": "^9.0.0 || ^10.0.0",
"resend": "^3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"node"
],
"rootDir": "./src",
"reporters": [
"default"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./test-results/coverage",
"testEnvironment": "node"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}