@ki1r0y/signed-cloud-server
Version:
Basic cloud storage in which contents are cryptographically signed, using distributed-storage as a co-dependency.
50 lines (49 loc) • 1.3 kB
JSON
{
"name": "@ki1r0y/signed-cloud-server",
"version": "1.0.17",
"description": "Basic cloud storage in which contents are cryptographically signed, using distributed-storage as a co-dependency.",
"main": "routes.mjs",
"scripts": {
"start": "node app.mjs",
"stop": "pkill ki1r0ystore; sleep 1",
"background": "npm stop; (nohup npm start 1>storage.log 2>&1 &)",
"test-client": "jasmine",
"test": "npm run background && npm run test-client && npm stop"
},
"engines": {
"node": ">=18.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kilroy-code/signed-cloud-server.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"cloud",
"cryptography",
"permissionless",
"server",
"express",
"distributed-security"
],
"author": {
"name": "Howard Stearns",
"email": "howard@ki1r0y.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kilroy-code/signed-cloud-server/issues"
},
"homepage": "https://github.com/kilroy-code/signed-cloud-server#readme",
"devDependencies": {
"cors": "^2.8.5",
"jasmine": "^5.7.1",
"morgan": "^1.10.0"
},
"dependencies": {
"@ki1r0y/distributed-security": "^1.2.4",
"express": "^4.21.0"
}
}