{
  "name": "s3-cached",
  "type": "module",
  "version": "6.0.1",
  "description": "S3 File Access Abstraction providing Memory and Disk Caching Layer",
  "main": "lib/index.js",
  "scripts": {
    "clean": "rm -rf lib",
    "build": "cp -rf ./src ./lib",
    "build-clean": "yarn run clean && yarn run build",
    "test-simple": "c8 mocha --experimental-loader=./test/hot.js \"./test/**/*.spec.js\"",
    "test": "yarn run clean && yarn run gardener && yarn run test-simple",
    "semantic-release": "yarn run build-clean && npx semantic-release",
    "gardener": "node gardener.js",
    "docker": "docker run --net host -u`id -u`:`id -g` -v $(pwd):/user/project -v ~/.aws:/user/.aws -v ~/.npmrc:/user/.npmrc -w /user/project -it --entrypoint /bin/bash",
    "t": "yarn test",
    "ts": "yarn run test-simple",
    "tsv": "yarn run test-simple --verbose",
    "u": "yarn upgrade --latest --force",
    "i": "yarn install --frozen-lockfile",
    "it": "yarn run i && yarn run t"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/blackflux/s3-cached.git"
  },
  "keywords": [
    "s3",
    "aws",
    "cache",
    "memory-cache",
    "disk-cache",
    "files",
    "storage",
    "cloud"
  ],
  "author": "Lukas Siemon",
  "license": "MIT",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/blackflux/s3-cached/blob/master/LICENSE"
    }
  ],
  "bugs": {
    "url": "https://github.com/blackflux/s3-cached/issues"
  },
  "homepage": "https://github.com/blackflux/s3-cached#readme",
  "dependencies": {
    "aws-sdk-wrap": "13.0.7",
    "cache-manager": "3.4.4",
    "cache-manager-fs": "1.0.9",
    "lodash.defaults": "4.2.0",
    "lodash.get": "4.4.2"
  },
  "devDependencies": {
    "@aws-sdk/client-s3": "3.385.0",
    "@babel/core": "7.22.9",
    "@babel/eslint-parser": "7.22.9",
    "@babel/register": "7.22.5",
    "@blackflux/eslint-plugin-rules": "3.0.1",
    "@blackflux/robo-config-plugin": "9.1.10",
    "c8": "8.0.1",
    "chai": "4.3.7",
    "eslint": "8.46.0",
    "eslint-config-airbnb-base": "15.0.0",
    "eslint-plugin-import": "2.28.0",
    "eslint-plugin-json": "3.1.0",
    "eslint-plugin-markdown": "3.0.1",
    "eslint-plugin-mocha": "10.1.0",
    "js-gardener": "5.0.1",
    "mocha": "10.2.0",
    "node-tdd": "4.0.1",
    "smart-fs": "4.0.1"
  },
  "engines": {
    "node": ">= 16"
  },
  "files": [
    "lib"
  ],
  "peerDependencies": {},
  "nyc": {
    "tempDir": "./coverage/.nyc_output",
    "report-dir": "./coverage",
    "check-coverage": true,
    "per-file": false,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "**/*.js"
    ],
    "exclude": [
      "gardener.js",
      "node_modules/*",
      "coverage/*",
      "lib/*"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "require": [
      "@babel/register"
    ],
    "extension": [],
    "cache": true,
    "all": true,
    "babel": true
  },
  "resolutions": {
    "strip-ansi": "^6.0.0",
    "string-width": "^4.0.0",
    "wrap-ansi": "^v7.0.0"
  }
}
