aboutsummaryrefslogtreecommitdiff
path: root/node_modules/stream-to-array/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/stream-to-array/package.json')
-rw-r--r--node_modules/stream-to-array/package.json35
1 files changed, 20 insertions, 15 deletions
diff --git a/node_modules/stream-to-array/package.json b/node_modules/stream-to-array/package.json
index 8dfe674d8..67e7b3df5 100644
--- a/node_modules/stream-to-array/package.json
+++ b/node_modules/stream-to-array/package.json
@@ -1,7 +1,7 @@
{
"name": "stream-to-array",
"description": "Concatenate a readable stream's data into a single array",
- "version": "1.0.0",
+ "version": "2.3.0",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
@@ -9,23 +9,28 @@
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/stream-utils/stream-to-array.git"
- },
- "bugs": {
- "mail": "me@jongleberry.com",
- "url": "https://github.com/stream-utils/stream-to-array/issues"
+ "repository": "stream-utils/stream-to-array",
+ "dependencies": {
+ "any-promise": "^1.1.0"
},
"devDependencies": {
- "co": "*",
- "gnode": "*",
- "mocha": "*"
+ "bluebird": "^3.1.1",
+ "istanbul": "^0.4.2",
+ "mocha": "^2.3.3"
},
"scripts": {
- "test": "NODE=gnode make test"
+ "test": "mocha --reporter spec --bail",
+ "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
+ "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
},
- "engines": {
- "node": ">= 0.10.0"
- }
+ "files": [
+ "index.js"
+ ],
+ "keywords": [
+ "stream",
+ "streams",
+ "buffer",
+ "array",
+ "concat"
+ ]
}