Files
transfer/package.json
2020-04-14 11:43:42 +02:00

46 lines
1.1 KiB
JSON

{
"name": "psitransfer",
"version": "0.0.0",
"description": "Simple open source self-hosted file sharing solution",
"keywords": [
"share",
"upload",
"transfer",
"files",
"wetransfer"
],
"repository": "psi-4ward/psitransfer",
"bugs": "https://github.com/psi-4ward/psitransfer/issues",
"main": "app.js",
"dependencies": {
"archiver": "^3.0.0",
"axios": "^0.19.0",
"compression": "^1.7.4",
"crypto-js": "^3.2.1",
"debug": "^4.1.1",
"express": "^4.17.1",
"fs-promise": "^2.0.3",
"http-errors": "^1.7.3",
"morgan": "^1.9.1",
"tus-metadata": "^1.0.2",
"tusboy": "^1.1.1",
"uuid": "^3.3.2"
},
"bin":{
"psitransfer": "cli.js"
},
"devDependencies": {},
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "NODE_ENV=dev DEBUG=psitransfer:* nodemon -i app -i dist -i data app.js",
"debug": "node --inspect app.js"
},
"engines": {
"node": ">= 7.4.0",
"npm": ">= 3"
},
"author": "Christoph Wiechert <wio@psitrax.de>",
"contributors": [],
"license": "BSD-2-Clause"
}