Skip to content

Commit

Permalink
Merge pull request #43 from flowforge/release-1.2.0
Browse files Browse the repository at this point in the history
Release 1.2.0
  • Loading branch information
robmarcer authored Dec 22, 2022
2 parents 30eb2cb + fe9f548 commit 0a6470e
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 62 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#### 1.2.0: Release

- S3 quota check (#42) @hardillb

124 changes: 62 additions & 62 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
{
"name": "@flowforge/file-server",
"version": "0.0.5",
"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",
"docs": "jsdoc -c ./config/jsdoc.json",
"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": [
"flowforge",
"object-store"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flowforge/flowforge-file-server.git"
},
"author": {
"name": "FlowForge Inc."
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/flowforge/flowforge-file-server/issues"
},
"homepage": "https://github.com/flowforge/flowforge-file-server#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.204.0",
"@fastify/helmet": "^10.0.2",
"@node-red/util": "^3.0.2",
"fastify": "^4.9.2",
"fastify-plugin": "^4.3.0",
"got": "^11.8.2",
"pg": "^8.7.3",
"pino-pretty": "^9.1.1",
"redis": "^4.5.1",
"semver": "^7.3.8",
"sequelize": "^6.25.3",
"sqlite3": "^5.1.2",
"yaml": "^2.1.3"
},
"devDependencies": {
"clean-jsdoc-theme": "^3.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.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": "^2.0.20",
"should": "^13.2.3"
},
"engines": {
"node": ">=16.x"
}
"name": "@flowforge/file-server",
"version": "1.2.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",
"docs": "jsdoc -c ./config/jsdoc.json",
"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": [
"flowforge",
"object-store"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flowforge/flowforge-file-server.git"
},
"author": {
"name": "FlowForge Inc."
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/flowforge/flowforge-file-server/issues"
},
"homepage": "https://github.com/flowforge/flowforge-file-server#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.204.0",
"@fastify/helmet": "^10.0.2",
"@node-red/util": "^3.0.2",
"fastify": "^4.9.2",
"fastify-plugin": "^4.3.0",
"got": "^11.8.2",
"pg": "^8.7.3",
"pino-pretty": "^9.1.1",
"redis": "^4.5.1",
"semver": "^7.3.8",
"sequelize": "^6.25.3",
"sqlite3": "^5.1.2",
"yaml": "^2.1.3"
},
"devDependencies": {
"clean-jsdoc-theme": "^3.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.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": "^2.0.20",
"should": "^13.2.3"
},
"engines": {
"node": ">=16.x"
}
}

0 comments on commit 0a6470e

Please sign in to comment.