{
  "name": "@sciactive/back-pressure-transform",
  "version": "0.0.2",
  "description": "A back pressure aware Transform stream.",
  "main": "dist/cjs/index.js",
  "module": "dist/es/index.js",
  "types": "dist/es/index.d.ts",
  "scripts": {
    "format": "npx prettier --write .",
    "lint": "npx prettier --check .",
    "clean": "test -d dist && rm -r dist || true",
    "build": "npm run build:cjs && npm run build:es",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:es": "tsc -p tsconfig.es.json",
    "prepare": "husky install && npm run clean && npm run build",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sciactive/back-pressure-transform.git"
  },
  "keywords": [
    "back pressure",
    "backpressure",
    "transform",
    "transform stream",
    "streams"
  ],
  "author": "Hunter Perrin <hperrin@port87.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/sciactive/back-pressure-transform/issues"
  },
  "homepage": "https://github.com/sciactive/back-pressure-transform#readme",
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@commitlint/config-conventional": "^17.0.3",
    "@tsconfig/recommended": "^1.0.1",
    "@types/jest": "^28.1.7",
    "husky": "^8.0.1",
    "jest": "^28.1.3",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.8",
    "typescript": "^4.7.4"
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  }
}
