forked from shroomlife/docker-https-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 739 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 739 Bytes
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
{
"name": "docker-https-proxy",
"version": "1.1.0",
"description": "a simple docker container to proxy requests inside your docker network",
"repository": "https://github.com/shroomlife/docker-https-proxy",
"author": "shroomlife",
"license": "Apache-2.0",
"scripts": {
"start": "node src/index",
"dev": "nodemon src/index",
"test": "jest",
"lint": "eslint ./src/**/*.js",
"build": "docker build . --tag shroomlife/docker-https-proxy:latest"
},
"dependencies": {
"body-parser": "1.19.0",
"express": "4.17.1"
},
"devDependencies": {
"jest": "24.9.0",
"nodemon": "1.19.4"
},
"resolutions": {
"handlebars": ">= 4.3.0",
"acorn": ">= 6.4.1",
"minimist": ">= 1.2.2"
}
}