-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "local-ssl-proxy",
"version": "2.0.5",
"author": "Cameron Hunter <hello@cameronhunter.co.uk>",
"description": "Simple SSL HTTP proxy using a self-signed certificate. Intended for local development only.",
"repository": {
"type": "git",
"url": "http://github.com/cameronhunter/local-ssl-proxy.git"
},
"license": "MIT",
"bin": "build/main.js",
"preferGlobal": true,
"files": [
"build",
"resources"
],
"scripts": {
"start": "npx ts-node ./src/main.ts",
"prebuild": "yarn clean",
"build": "tsc && chmod +x ./build/main.js",
"clean": "tsc --build --clean",
"test": "vitest run",
"prepublish": "yarn test && yarn build",
"renew-certs": "cd resources && mkcert localhost"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^10.0.0",
"http-proxy": "^1.18.1"
},
"devDependencies": {
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/http-proxy": "^1.17.10",
"@types/node": "^18.15.0",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"packageManager": "yarn@3.4.1"
}