share-files-tool
Version:
A simple file sharing application.
43 lines (42 loc) • 851 B
JSON
{
"name": "share-files-tool",
"version": "1.2.14",
"description": "A simple file sharing application.",
"main": "src/server.js",
"bin": {
"sharer": "./src/start.js"
},
"git": "https://github.com/PeiJueChen/share-files-tool",
"engines": {
"node": ">=10.1.0"
},
"files": [
"src/",
"public/",
"README.md",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/server.js",
"start2": "nodemon src/server.js"
},
"keywords": [
"file",
"sharing",
"node",
"application"
],
"author": "Jason Chan",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"qr-image": "^3.2.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}