UNPKG

@flowfuse/file-server

Version:
65 lines (64 loc) 2 kB
{ "name": "@flowfuse/file-server", "version": "2.16.0", "description": "A basic Object Storage backend", "main": "index.js", "scripts": { "start": "node index.js", "serve": "cross-env NODE_ENV=development nodemon -w forge index.js", "lint": "eslint -c .eslintrc \"forge/**/*.js\" \"test/**/*.js\" index.js", "lint:fix": "eslint -c .eslintrc \"forge/**/*.js\" \"test/**/*.js\" index.js --fix", "test": "mocha test/unit/**/*_spec.js --timeout 5000", "test:nopg": "cross-env TEST_POSTGRES=false mocha test/unit/**/*_spec.js --timeout 5000" }, "bin": { "ff-file-storage": "./index.js" }, "keywords": [ "flowfuse", "object-store" ], "repository": { "type": "git", "url": "git+https://github.com/FlowFuse/file-server.git" }, "author": { "name": "FlowFuse Inc." }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/FlowFuse/file-server/issues" }, "homepage": "https://github.com/FlowFuse/file-server#readme", "dependencies": { "@aws-sdk/client-s3": "^3.388.0", "@fastify/helmet": "^11.0.0", "@node-red/util": "^3.1.0", "fastify": "^4.21.0", "fastify-metrics": "^10.3.0", "fastify-plugin": "^4.5.1", "fastify-healthcheck": "^4.4.0", "got": "^11.8.6", "pg": "^8.11.2", "pino": "^8.15.1", "pino-pretty": "^10.2.0", "semver": "^7.5.4", "sequelize": "^6.33.0", "sqlite3": "^5.1.6", "yaml": "^2.1.3" }, "devDependencies": { "cross-env": "^7.0.3", "eslint": "^8.47.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-no-only-tests": "^3.1.0", "eslint-plugin-promise": "^6.1.1", "mocha": "^10.1.0", "mocha-cli": "^1.0.1", "nodemon": "^3.0.1", "should": "^13.2.3" }, "engines": { "node": ">=16.x" } }