{
  "name": "typed-streams",
  "version": "1.6.2",
  "description": "Strongly typed streams so that streams are piped to the intended stream handlers",
  "private": false,
  "types": "dist/index.d.ts",
  "main": "dist/index.js",
  "license": "MIT",
  "engines": {
    "node": ">=10.13",
    "npm": ">=6.4.1"
  },
  "files": [
    "dist/src/**/*",
    "dist/index.d.ts",
    "dist/index.js"
  ],
  "keywords": [
    "stream",
    "typescript",
    "typed",
    "streams"
  ],
  "scripts": {
    "prebuild": "cti create ./src && rimraf **/index.ts.bak",
    "build": "npm run format:prettier && npm run lint && tsc -sourcemap",
    "test": "mocha \"dist/test/**/*.js\"",
    "build:watch": "tsc -w",
    "clean": "rimraf dist && rimraf node_modules",
    "audit": "../../bin/npm-audit.sh",
    "prepublishOnly": "npm run clean && npm run install:prod && npm run build && npm run test && npm run prune:prod",
    "preversion": "npm run build && npm run test",
    "format:prettier": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json",
    "install:prod": "npm ci",
    "prune:prod": "npm prune --production",
    "refresh-package-locks": "npm run clean && find . -iname package-lock.json -delete && npm install",
    "interactive-publish": "np"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:hiro5id/typed-streams.git"
  },
  "dependencies": {
    "@types/mongodb": "^3.5.6",
    "source-map-support": "^0.5.16"
  },
  "devDependencies": {
    "@types/chai": "^4.2.11",
    "@types/fs-extra": "^9.0.3",
    "@types/mocha": "^8.0.3",
    "@types/node": "^14.14.6",
    "@types/rimraf": "^3.0.0",
    "@types/uuid": "^8.3.0",
    "chai": "^4.2.0",
    "create-ts-index": "^1.12.1",
    "error-ex": "git+https://github.com/Qix-/node-error-ex.git#1.3.2",
    "fs-extra": "^9.0.0",
    "get-port": "^5.1.1",
    "mocha": "^8.2.1",
    "mongodb": "^3.5.6",
    "mongodb-memory-server-core": "^6.5.2",
    "np": "^7.0.0",
    "prettier": "^2.0.4",
    "rimraf": "^3.0.2",
    "ts-node": "^9.0.0",
    "tslint": "^6.1.1",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.0.5",
    "uuid": "^8.3.1"
  }
}
