- config.json and param.json moved to args/ - param-default.json will be used by default if param.json is not generated by the user - Renamed launch.js to start.js - Minor bug fixes
33 lines
877 B
JSON
33 lines
877 B
JSON
{
|
|
"name": "supernodestorage",
|
|
"version": "1.0.0",
|
|
"description": "Supernode Storage is a Cloud Storage program for FLO Dapps",
|
|
"main": "src/main.js",
|
|
"dependencies": {
|
|
"mysql": "^2.18.1",
|
|
"node-fetch": "^2.6.1",
|
|
"ws": "^7.5.0"
|
|
},
|
|
"devDependencies": {},
|
|
"scripts": {
|
|
"postinstall": "node args/post-install.js",
|
|
"start": "node start.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ranchimall/SuperNodeStorage.git"
|
|
},
|
|
"keywords": [
|
|
"FLO",
|
|
"supernode",
|
|
"cloud",
|
|
"storage"
|
|
],
|
|
"author": "Sai Raj (https://github.com/sairajzero)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ranchimall/SuperNodeStorage/issues"
|
|
},
|
|
"homepage": "https://github.com/ranchimall/SuperNodeStorage#readme"
|
|
}
|