-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "nest-local-https-proxy",
"version": "1.1.1",
"description": "A simple library to add HTTPS support to your HTTP NestJS application for local develoment, debugging, and testing.",
"repository": {
"type": "git",
"url": "https://github.com/rbonestell/nest-local-https-proxy.git"
},
"bugs": {
"url": "https://github.com/rbonestell/nest-local-https-proxy/issues"
},
"keywords": [
"nest",
"nestjs",
"ssl",
"tls",
"https",
"local",
"express",
"fastify",
"secure",
"certificate",
"self-signed"
],
"private": false,
"main": "dist/local-https-proxy.js",
"types": "dist/local-https-proxy.d.ts",
"scripts": {
"build": "rimraf -rf dist && tsc --removeComments && tsc --declaration --emitDeclarationOnly",
"test": "jest --config=jest.config.js --detectOpenHandles --runInBand --forceExit",
"test:cov": "jest --config=jest.config.js --detectOpenHandles --runInBand --coverage --forceExit"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Bobby Bonestell <rbonestell@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/platform-fastify": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}