s3-cached
Version:
S3 File Access Abstraction providing Memory and Disk Caching Layer
114 lines (113 loc) • 2.96 kB
JSON
{
"name": "s3-cached",
"type": "module",
"version": "7.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 --import=./test/reg.js \"./test/**/*.spec.js\"",
"test": "yarn run clean && yarn run gardener && yarn run test-simple",
"semantic-release": "yarn run build-clean && yarn exec 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": "14.0.0",
"cache-manager": "3.4.4",
"cache-manager-fs": "1.0.12",
"lodash.defaults": "4.2.0",
"lodash.get": "4.4.2"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.385.0",
"@babel/core": "7.26.7",
"@babel/eslint-parser": "7.26.5",
"@babel/register": "7.25.9",
"@blackflux/eslint-plugin-rules": "4.0.1",
"@blackflux/robo-config-plugin": "10.0.2",
"c8": "10.1.3",
"chai": "5.1.2",
"eslint": "9.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-mocha": "10.5.0",
"js-gardener": "6.0.3",
"mocha": "11.1.0",
"node-tdd": "6.0.0",
"smart-fs": "5.0.1"
},
"engines": {
"node": ">= 20"
},
"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
}
}