-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "https-cert-proxy",
"version": "0.4.0",
"description": "Creates a simple HTTPS-to-HTTP proxy for local development, using provided certificate files.",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/**\""
},
"repository": {
"type": "git",
"url": "https://github.com/tdukart/https-cert-proxy.git"
},
"keywords": [],
"author": "Todd Dukart <tdukart@mechninja.com>",
"license": "BSD-3-Clause",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"http-proxy": "^1.18.0",
"lodash.isempty": "^4.4.0",
"x509.js": "^1.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.1",
"@stylistic/eslint-plugin": "^3.1.0",
"eslint": "^9.39.1",
"eslint-config-airbnb-extended": "^2.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.23.1"
}
}