You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
671 B
25 lines
671 B
{
|
|
"name": "passthrough-counter",
|
|
"description": "Get the total buffer length of a stream.",
|
|
"version": "1.0.0",
|
|
"author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
|
|
"license": "MIT",
|
|
"repository": "stream-utils/passthrough-counter",
|
|
"devDependencies": {
|
|
"mocha": "2",
|
|
"istanbul": "0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --reporter spec",
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
|
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"count",
|
|
"passthrough"
|
|
],
|
|
"files": [
|
|
"index.js"
|
|
]
|
|
}
|
|
|