meyfa/fs-adapters

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "fs-adapters",
  "version": "7.0.2",
  "description": "Minimal interfaces for file system abstraction",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
    "test": "mocha --require ts-node/register --recursive \"test/**/*.test.*\"",
    "lint": "tsc --noEmit -p tsconfig.lint.json && eslint --ignore-path .gitignore .",
    "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix --ignore-path .gitignore .",
    "coverage": "c8 --all --src=src --reporter=text --reporter=lcov npm test",
    "prepack": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/meyfa/fs-adapters.git"
  },
  "keywords": [
    "fs",
    "filesystem",
    "adapter",
    "interface",
    "memory"
  ],
  "author": "Fabian Meyer",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/meyfa/fs-adapters/issues"
  },
  "homepage": "https://github.com/meyfa/fs-adapters",
  "engines": {
    "node": ">=18.16.1"
  },
  "devDependencies": {
    "@meyfa/eslint-config": "5.1.0",
    "@types/mocha": "10.0.6",
    "@types/node": "20.12.7",
    "@types/stream-buffers": "3.0.7",
    "c8": "9.1.0",
    "eslint": "8.57.0",
    "mocha": "10.4.0",
    "ts-node": "10.9.2",
    "typescript": "5.4.5"
  },
  "dependencies": {
    "stream-buffers": "^3.0.2"
  }
}