-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 865 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
{
"name": "mini-proxy",
"version": "1.0.0",
"description": "minimalist URL-based proxy",
"main": "server.js",
"scripts": {
"start": "node server.js",
"watch": "supervisor -w *.js -- server.js",
"add-to-systemd": "./scripts/add_to_systemd",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "maxlath",
"license": "AGPL-3.0",
"dependencies": {
"add-to-systemd": "^2.1.2",
"chalk": "^2.4.2",
"config": "^3.1.0",
"express": "^4.17.1",
"morgan": "^1.1.1",
"request": "^2.88.0"
},
"devDependencies": {
"supervisor": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/mini-proxy.git"
},
"bugs": {
"url": "https://github.com/maxlath/mini-proxy/issues"
},
"homepage": "https://github.com/maxlath/mini-proxy#readme"
}