feathersjs/feathers-blob

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feathers-blob",
  "description": "Feathers blob service",
  "version": "2.6.0",
  "homepage": "https://github.com/feathersjs-ecosystem/feathers-blob",
  "main": "lib/",
  "keywords": [
    "feathers",
    "feathers-plugin",
    "blob",
    "abstract-blob-store",
    "fs",
    "s3",
    "file",
    "files",
    "binary"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/feathersjs-ecosystem/feathers-blob.git"
  },
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "contributors": [],
  "bugs": {
    "url": "https://github.com/feathersjs-ecosystem/feathers-blob/issues"
  },
  "engines": {
    "node": ">= 6"
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "lib/**",
    "types/**"
  ],
  "scripts": {
    "publish": "git push origin --tags && npm run changelog && git push origin",
    "changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-blob && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
    "release:patch": "npm version patch && npm publish",
    "release:minor": "npm version minor && npm publish",
    "release:major": "npm version major && npm publish",
    "lint": "semistandard --fix",
    "dtslint": "dtslint types",
    "mocha": "mocha",
    "test": "npm run lint && npm run coverage && npm run dtslint",
    "example": "babel-node examples/app",
    "coverage": "nyc npm run mocha"
  },
  "semistandard": {
    "env": [
      "mocha"
    ]
  },
  "directories": {
    "lib": "lib"
  },
  "types": "types",
  "greenkeeper": {
    "ignore": [
      "aws-sdk"
    ]
  },
  "dependencies": {
    "@feathersjs/errors": "^4.5.12",
    "concat-stream": "^2.0.0",
    "dauria": "^2.0.0",
    "debug": "^4.3.3",
    "from2": "^2.3.0",
    "mime-types": "^2.1.34",
    "uberproto": "^2.0.6"
  },
  "devDependencies": {
    "@feathersjs/client": "^4.5.13",
    "@feathersjs/express": "^4.5.12",
    "@feathersjs/feathers": "^4.5.12",
    "abstract-blob-store": "^3.3.5",
    "aws-sdk": "^2.1067.0",
    "body-parser": "^1.19.1",
    "dtslint": "^4.2.1",
    "fs-blob-store": "^6.0.0",
    "mocha": "^9.2.0",
    "nyc": "^15.1.0",
    "s3-blob-store": "^4.1.1",
    "semistandard": "^16.0.1",
    "superagent": "^7.1.1",
    "typescript": "^4.5.5"
  }
}