{
  "name": "promise-piping",
  "version": "1.0.1",
  "description": "Return promise for streams piping",
  "main": "lib/promise-piping.js",
  "typings": "lib/promise-piping.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dex4er/js-promise-piping"
  },
  "keywords": [
    "promise",
    "pipe",
    "piping",
    "stream"
  ],
  "author": "Piotr Roszatycki",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dex4er/js-promise-piping/issues"
  },
  "homepage": "http://github.com/dex4er/js-promise-piping",
  "engines": {
    "node": ">=4.0.0"
  },
  "dependencies": {
    "promise-duplex": "^3.0.3",
    "promise-readable": "^3.1.5",
    "promise-writable": "^3.1.2"
  },
  "devDependencies": {
    "@types/node": "^9.4.7",
    "chai": "^4.1.2",
    "chai-as-promised": "^7.1.1",
    "markdownlint-cli": "^0.7.1",
    "snazzy": "^7.1.1",
    "standard": "^11.0.0",
    "tap": "^11.1.2",
    "tap-given": "^0.6.0",
    "tslint": "^5.9.1",
    "tslint-config-standard": "^7.0.0",
    "typescript": "^2.7.2"
  },
  "scripts": {
    "pretest": "standard --verbose | snazzy && tsc --noEmit --pretty && tslint -t stylish -p . && markdownlint *.md",
    "test": "tap test/*.js",
    "test:coverage": "npm test -- --coverage",
    "test:onchange:lcovonly": "npm run -s test-coverage -- -R min --coverage-report lcovonly; onchange '**/*.js' -- npm run -s test-coverage -- -R min --coverage-report lcovonly"
  },
  "standard": {
    "globals": [
      "After",
      "And",
      "Feature",
      "Given",
      "Scenario",
      "Then",
      "When"
    ]
  },
  "nyc": {
    "exclude": []
  }
}
