Files
Projektarbeit-MYP/backend/app/node_modules/read-cache/package.json
Till Tomczak 2d33753b94 feat: Major updates to backend structure and security enhancements
- Removed `COMMON_ERRORS.md` file to streamline documentation.
- Added `Flask-Limiter` for rate limiting and `redis` for session management in `requirements.txt`.
- Expanded `ROADMAP.md` to include completed security features and planned enhancements for version 2.2.
- Enhanced `setup_myp.sh` for ultra-secure kiosk installation, including system hardening and security configurations.
- Updated `app.py` to integrate CSRF protection and improved logging setup.
- Refactored user model to include username and active status for better user management.
- Improved job scheduler with uptime tracking and task management features.
- Updated various templates for a more cohesive user interface and experience.
2025-05-25 20:33:38 +02:00

35 lines
712 B
JSON

{
"name": "read-cache",
"version": "1.0.0",
"description": "Reads and caches the entire contents of a file until it is modified",
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrySound/read-cache.git"
},
"keywords": [
"fs",
"read",
"cache"
],
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrySound/read-cache/issues"
},
"homepage": "https://github.com/TrySound/read-cache#readme",
"devDependencies": {
"ava": "^0.9.1",
"del": "^2.2.0"
},
"dependencies": {
"pify": "^2.3.0"
}
}