-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.72 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.72 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "http-up",
"version": "3.2.3",
"description": "Simple share folder via http with upload",
"type": "module",
"main": "./bin/http-up",
"bin": {
"http-up": "bin/http-up"
},
"scripts": {
"start": "node ./bin/http-up",
"test": "jest --watchAll --runInBand",
"prettier": "npx prettier bin lib assets __tests__ --check",
"prettier:fix": "npm run prettier -- --write"
},
"directories": {
"lib": "lib",
"bin": "bin",
"view": "view",
"assets": "assets",
"model": "model"
},
"files": [
"lib",
"bin",
"view",
"assets",
"model",
"README.md"
],
"author": "https://github.com/western",
"license": "MIT",
"bugs": {
"url": "https://github.com/western/http-up/issues"
},
"homepage": "https://github.com/western/http-up#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/western/http-up.git"
},
"keywords": [
"cli",
"command",
"static",
"static-server",
"http",
"https",
"tls",
"http-server",
"https-server",
"web-server",
"webserver",
"server",
"share",
"upload",
"file-upload",
"file-manager",
"file-server",
"file-share",
"file-sharing",
"file-transfer",
"download"
],
"dependencies": {
"archiver": "^7.0.1",
"basic-auth": "^2.0.1",
"chalk": "^5.6.2",
"compression": "^1.8.1",
"express": "^5.1.0",
"express-handlebars": "^8.0.3",
"image-thumbnail": "^1.0.17",
"jest": "^30.1.3",
"md5-file": "^5.0.0",
"mime": "^4.1.0",
"minimist": "^1.2.8",
"multer": "^2.0.2",
"node-datetime": "^2.1.2",
"shelljs": "^0.10.0",
"sqlite3": "^5.1.7",
"urlencode": "^2.0.0",
"which": "^5.0.0"
}
}