-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "@the-software-compagny/nestjs_module_imapflow",
"version": "0.0.1",
"description": "NestJS module for Imapflow to interact with IMAP/POP procotol with NodeJS",
"repository": "https://github.com/The-Software-Compagny/nestjs_module_imapflow.git",
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/The-Software-Compagny/nestjs_module_imapflow/graphs/contributors"
}
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json"
},
"dependencies": {
"imapflow": "^1.0.164"
},
"devDependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@nestjs/testing": "^10.3.9",
"@types/jest": "29.5.12",
"@types/node": "^20.14.6",
"@types/supertest": "^6.0.2",
"cpr": "^3.0.1",
"eslint": "^9.5.0",
"jest": "29.7.0",
"prettier": "^3.3.2",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.7",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"publishConfig": {
"access": "public"
}
}