es6-promise-pool
Advanced tools
Comparing version 2.4.1 to 2.4.2
@@ -1,8 +0,6 @@ | ||
/* global define */ | ||
(function (root, factory) { | ||
/* istanbul ignore if */ | ||
/* istanbul ignore next */ | ||
if (typeof define === 'function' && define.amd) { | ||
define([], factory) | ||
} else /* istanbul ignore else */ if (typeof exports === 'object') { | ||
} else if (typeof exports === 'object') { | ||
module.exports = factory() | ||
@@ -9,0 +7,0 @@ } else { |
{ | ||
"name": "es6-promise-pool", | ||
"version": "2.4.1", | ||
"description": "Runs Promises in a pool that limits their maximum concurrency.", | ||
"version": "2.4.2", | ||
"description": "Runs Promises in a pool that limits their concurrency.", | ||
"author": { | ||
@@ -32,14 +32,14 @@ "name": "Tim De Pauw", | ||
"devDependencies": { | ||
"bluebird": "^3.4.0", | ||
"chai": "^3.2.0", | ||
"chai-as-promised": "^5.1.0", | ||
"console-stamp": "^0.1.6", | ||
"console-stamp": "^0.2.2", | ||
"coveralls": "^2.11.4", | ||
"es6-promise": "^3.0.2", | ||
"istanbul": "^0.3.17", | ||
"istanbul": "^0.4.3", | ||
"mocha": "^2.2.5", | ||
"mocha-lcov-reporter": "0.0.2", | ||
"mocha-phantomjs": "^3.6.0", | ||
"phantomjs": "1.9.7-15", | ||
"pinkie": "^1.0.0", | ||
"standard": "^5.1.0" | ||
"mocha-lcov-reporter": "^1.2.0", | ||
"mocha-phantomjs": "^4.0.2", | ||
"phantomjs-prebuilt": "^2.1.7", | ||
"standard": "^7.1.2" | ||
}, | ||
@@ -50,7 +50,6 @@ "engines": { | ||
"scripts": { | ||
"test": "npm run standard && npm run mocha", | ||
"test": "npm run standard && npm run coverage", | ||
"standard": "node node_modules/standard/bin/cmd.js", | ||
"mocha": "node --harmony node_modules/mocha/bin/_mocha", | ||
"cover": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec", | ||
"coveralls": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info && rm -rf coverage" | ||
"coverage": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec && node node_modules/istanbul/lib/cli.js check-coverage", | ||
"coveralls": "node node_modules/coveralls/bin/coveralls.js <coverage/lcov.info" | ||
}, | ||
@@ -68,4 +67,13 @@ "files": [ | ||
"bower_components/**" | ||
], | ||
"globals": [ | ||
"define", | ||
"describe", | ||
"it", | ||
"before", | ||
"after", | ||
"beforeEach", | ||
"afterEach" | ||
] | ||
} | ||
} |
# ES6 Promise Pool | ||
[![npm](https://img.shields.io/npm/v/es6-promise-pool.svg)](https://www.npmjs.com/package/es6-promise-pool) ![Bower](https://img.shields.io/bower/v/es6-promise-pool.svg) [![Build Status](https://img.shields.io/travis/timdp/es6-promise-pool.svg)](https://travis-ci.org/timdp/es6-promise-pool) [![Coverage Status](https://img.shields.io/coveralls/timdp/es6-promise-pool.svg)](https://coveralls.io/r/timdp/es6-promise-pool) [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/feross/standard) | ||
[![npm](https://img.shields.io/npm/v/es6-promise-pool.svg)](https://www.npmjs.com/package/es6-promise-pool) ![Bower](https://img.shields.io/bower/v/es6-promise-pool.svg) [![Build Status](https://img.shields.io/travis/timdp/es6-promise-pool/master.svg?label=travis+build)](https://travis-ci.org/timdp/es6-promise-pool) [![Build Status](https://img.shields.io/appveyor/ci/timdp/es6-promise-pool/master.svg?label=appveyor+build)](https://ci.appveyor.com/project/timdp/es6-promise-pool) [![Coverage Status](https://img.shields.io/coveralls/timdp/es6-promise-pool/master.svg)](https://coveralls.io/r/timdp/es6-promise-pool) [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/feross/standard) | ||
Runs `Promise`s in a pool that limits their maximum concurrency. | ||
Runs `Promise`s in a pool that limits their concurrency. | ||
@@ -7,0 +7,0 @@ ## Motivation |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15822
193