-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 847 Bytes
/
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
{
"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 <[email protected]>",
"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": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
}
}