kalisio/feathers-s3

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@kalisio/feathers-s3",
  "description": "Manage s3 objects using presigned url",
  "version": "1.4.0",
  "homepage": "https://github.com/kalisio/feathers-s3",
  "main": "lib/index.js",
  "type": "module",
  "keywords": [
    "feathers",
    "feathers-s3"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/kalisio/feathers-s3.git"
  },
  "author": {
    "name": "Kalisio contributors",
    "url": "https://github.com/kalisio"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/kalisio/feathers-s3/issues"
  },
  "engines": {
    "node": ">= 18.0.0"
  },
  "scripts": {
    "publish": "git push origin --tags && git push origin",
    "release:patch": "npm version patch && npm publish --access public",
    "release:minor": "npm version minor && npm publish --access public",
    "release:major": "npm version major && npm publish --access public",
    "lint": "standard lib/**/*.js test/**/*.js --fix",
    "mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit --timeout 30000",
    "coverage": "c8 npm run mocha",
    "test": "npm run lint && npm run coverage"
  },
  "standard": {
    "parserOptions": {
      "sourceType": "module"
    },
    "env": [
      "mocha"
    ],
    "globals": [
      "expect"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.209.0",
    "@aws-sdk/s3-request-presigner": "^3.209.0",
    "@feathersjs/commons": "^5.0.8",
    "@feathersjs/errors": "^5.0.8",
    "debug": "^4.1.0",
    "lodash": "^4.17.21",
    "moment": "^2.29.4"
  },
  "devDependencies": {
    "@feathersjs/client": "^5.0.8",
    "@feathersjs/express": "^5.0.8",
    "@feathersjs/feathers": "^5.0.8",
    "@feathersjs/socketio": "^5.0.8",
    "c8": "^7.11.0",
    "chai": "^4.3.6",
    "chai-lint": "^0.1.1",
    "cross-env": "^7.0.3",
    "mocha": "^9.2.2",
    "node-fetch": "^3.3.2",
    "sharp": "^0.32.0",
    "socket.io-client": "^4.5.3",
    "standard": "^17.0.0",
    "superagent": "^9.0.2"
  }
}