http-up
Version:
Simple share folder via http with upload
71 lines (70 loc) • 1.42 kB
JSON
{
"name": "http-up",
"version": "2.4.2",
"description": "Simple share folder via http with upload",
"main": "./lib/http-up",
"repository": {
"type": "git",
"url": "git://github.com/western/http-up.git"
},
"keywords": [
"cli",
"command",
"static",
"http",
"https",
"tls",
"http-server",
"https-server",
"web-server",
"server",
"upload",
"file-upload",
"share"
],
"directories": {
"lib": "lib",
"bin": "bin",
"views": "views",
"assets": "assets",
"model": "model"
},
"scripts": {
"start": "node ./bin/http-up",
"prettier": "npx prettier bin lib --check",
"prettier:fix": "npm run prettier -- --write",
"test": "jest --watchAll --runInBand"
},
"files": [
"lib",
"bin",
"views",
"assets",
"model",
"README.md"
],
"bugs": {
"url": "https://github.com/western/http-up/issues"
},
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"compression": "^1.7.5",
"cors": "^2.8.5",
"express": "^4.21.1",
"express-basic-auth": "^1.2.1",
"express-handlebars": "^8.0.1",
"jest": "^29.7.0",
"mime": "^3.0.0",
"minimist": "^1.2.8",
"multer": "^1.4.5-lts.1",
"node-datetime": "^2.1.2",
"shelljs": "^0.8.5",
"sqlite3": "^5.1.7",
"urlencode": "^2.0.0"
},
"bin": {
"http-up": "./bin/http-up"
}
}