{
  "name": "stream-head",
  "description": "Peek the first couple of bytes from a stream",
  "license": "MIT",
  "version": "3.0.0",
  "author": "Gustaf Räntilä <g.rantila@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/grantila/stream-head.git"
  },
  "type": "module",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "engines": {
    "node": ">=14.13.1"
  },
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig-prod.json",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest",
    "cz": "git-cz"
  },
  "pre-commit": [
    "build",
    "test"
  ],
  "keywords": [
    "stream",
    "head",
    "peek",
    "promise"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "dependencies": {
    "through2": "4.0.2"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.4.0",
    "@types/node": "18.11.19",
    "@types/through2": "^2.0.38",
    "cz-conventional-changelog": "^3.3.0",
    "jest": "^29.4.1",
    "pre-commit": "^1.2.2",
    "rimraf": "^4.1.2",
    "ts-jest-resolver": "^2.0.0",
    "typescript": "4.9.5",
    "web-streams-polyfill": "^3.2.1"
  },
  "packageManager": "yarn@3.2.4"
}
