forked from mlebkowski/nassau-https-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 851 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
31
32
33
34
35
36
37
38
{
"name": "nassau-https-proxy",
"description": "enable HTTPS in your local development environment with automatically generated certificates",
"author": {
"name": "Maciej Łebkowski",
"email": "[email protected]",
"url": "https://lebkowski.name"
},
"bin": {
"nassau-https-proxy": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mlebkowski/nassau-https-proxy.git"
},
"version": "1.1.2",
"homepage": "https://github.com/mlebkowski/nassau-https-proxy",
"license": "MIT",
"keywords": [
"local",
"development",
"https",
"ssl",
"cert",
"proxy",
"reverse-proxy"
],
"dependencies": {
"http-proxy": "*"
},
"engines": {
"node": "8.*"
},
"scripts": {
"start": "node index.js",
"install": "env POSTINSTALL=1 node index.js"
}
}