-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "docker-https-proxy",
"version": "1.1.8",
"description": "a simple docker container to proxy requests inside your docker network",
"repository": "https://github.com/shroomlife/docker-https-proxy",
"license": "Apache-2.0",
"author": "shroomlife",
"scripts": {
"build": "docker build . --tag shroomlife/docker-https-proxy:latest",
"dev": "nodemon src/index",
"lint": "eslint ./src/**/*.js",
"start": "node src/index",
"test": "jest"
},
"resolutions": {
"acorn": ">= 6.4.1",
"ansi-regex": ">=5.0.1",
"dot-prop": ">= 4.2.1",
"handlebars": ">= 4.3.0",
"hosted-git-info": ">= 2.8.9",
"ini": ">= 1.3.6",
"kind-of": ">= 6.0.3",
"lodash": ">= 4.17.21",
"minimist": ">= 1.2.2",
"node-notifier": ">= 8.0.1",
"tmpl": ">=1.0.5",
"ws": ">= 7.4.6",
"y18n": ">= 4.0.1",
"yargs-parser": ">= 13.1.2"
},
"dependencies": {
"express": "4.19.2"
},
"devDependencies": {
"jest": "29.7.0",
"nodemon": "3.1.3"
}
}