-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 881 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
39
{
"name": "@union.io/union",
"version": "1.1.0",
"description": "a node web server made for multi-domain hosting",
"main": "binaries/union.js",
"bin": {
"union": "./binaries/union.js"
},
"scripts": {
"start": "node ./binaries/union.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "github.com/i-a-n/union"
},
"keywords": [
"server"
],
"author": "@i-a-n",
"license": "Apache-2.0",
"devDependencies": {
"@types/basic-auth": "1.1.8",
"@types/connect": "3.4.38",
"@types/express": "4.17.21",
"@types/vhost": "3.0.9",
"typescript": "5.3.3"
},
"dependencies": {
"basic-auth": "2.0.1",
"connect": "3.7.0",
"express": "4.18.2",
"pm2": "5.3.1",
"serve-static": "1.15.0",
"vhost": "3.0.2",
"vhttps": "0.1.1"
}
}