{
  "name": "streambeans",
  "version": "1.4.3",
  "description": "",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
    "mocha": "mocha -r ts-node/register test/specs/**/*.ts",
    "cover": "nyc npm run mocha",
    "test": "npm run lint; npm run cover",
    "clean": "rm lib/*",
    "tsc": "tsc",
    "build": "npm run clean; npm run tsc",
    "all": "npm run test && npm run build"
  },
  "keywords": [
    "stream",
    "speed",
    "metric",
    "bytes",
    "rate",
    "metrics",
    "bps",
    "mps",
    "measurements"
  ],
  "author": "Kevin Gravier <https://github.com/mrkmg>",
  "license": "MIT",
  "repository": "https://github.com/mrkmg/node-streambeans",
  "files": [
    "lib",
    "example.js"
  ],
  "devDependencies": {
    "@types/chai": "^4.2.7",
    "@types/mocha": "^2.2.48",
    "@types/node": "^10.17.13",
    "chai": "^4.2.0",
    "mocha": "^5.2.0",
    "nyc": "^15.0.0",
    "source-map-support": "^0.5.16",
    "tempy": "^0.2.1",
    "ts-node": "^4.1.0",
    "tslint": "^5.20.1",
    "typescript": "^2.9.2"
  },
  "dependencies": {
    "pretty-bytes": "^4.0.2"
  },
  "nyc": {
    "include": [
      "src/index.ts",
      "src/StreamBeans.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "html",
      "text",
      "json"
    ],
    "all": true,
    "sourceMap": true,
    "instrument": true
  }
}
