{
  "name": "fs-capacitor",
  "version": "6.2.0",
  "description": "Filesystem-buffered, passthrough stream that buffers indefinitely rather than propagate backpressure from downstream consumers.",
  "license": "MIT",
  "author": {
    "name": "Mike Marcacci",
    "email": "mike.marcacci@gmail.com"
  },
  "repository": "github:mike-marcacci/fs-capacitor",
  "homepage": "https://github.com/mike-marcacci/fs-capacitor#readme",
  "bugs": "https://github.com/mike-marcacci/fs-capacitor/issues",
  "keywords": [
    "stream",
    "buffer",
    "file",
    "split",
    "clone"
  ],
  "files": [
    "dist/index.js"
  ],
  "main": "dist/index.js",
  "engines": {
    "node": ">=10"
  },
  "browserslist": "node >= 10",
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^3.0.2",
    "@typescript-eslint/parser": "^3.0.2",
    "ava": "^3.1.0",
    "eslint": "^7.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.3",
    "nodemon": "^2.0.4",
    "prettier": "^2.0.5",
    "typescript": "^3.9.3"
  },
  "scripts": {
    "format": "prettier --list-different --write '**/*.{json,yml,md,ts}'",
    "lint": "prettier -c '**/*.{json,yml,md,ts}' && eslint src --ext ts",
    "build": "rm -rf dist && tsc",
    "build:development": "rm -rf dist && tsc --watch",
    "test": "ava --verbose dist/*.test.js",
    "test:development": "ava --verbose --watch dist/*.test.js",
    "prepare": "yarn build",
    "prepublishOnly": "yarn install && yarn lint && yarn build && yarn test"
  },
  "dependencies": {}
}
