Comparing version 0.1.3 to 1.0.0
{ | ||
"name": "each-async", | ||
"version": "0.1.3", | ||
"description": "Async concurrent iterator", | ||
"version": "1.0.0", | ||
"description": "Async concurrent iterator (async forEach)", | ||
"license": "MIT", | ||
"main": "each-async.js", | ||
"repository": "sindresorhus/each-async", | ||
@@ -20,3 +19,3 @@ "author": { | ||
"files": [ | ||
"each-async.js" | ||
"index.js" | ||
], | ||
@@ -37,2 +36,5 @@ "keywords": [ | ||
], | ||
"dependencies": { | ||
"onetime": "^1.0.0" | ||
}, | ||
"devDependencies": { | ||
@@ -39,0 +41,0 @@ "mocha": "*" |
@@ -14,22 +14,12 @@ # each-async [![Build Status](https://travis-ci.org/sindresorhus/each-async.svg?branch=master)](https://travis-ci.org/sindresorhus/each-async) | ||
Download [manually](https://github.com/sindresorhus/each-async/releases) or with a package-manager. | ||
```bash | ||
```sh | ||
$ npm install --save each-async | ||
``` | ||
```bash | ||
$ bower install --save each-async | ||
``` | ||
```bash | ||
$ component install sindresorhus/each-async | ||
``` | ||
## Usage | ||
### Node.js | ||
```js | ||
var eachAsync = require('each-async'); | ||
```js | ||
eachAsync(['foo','bar','baz'], function (item, index, done) { | ||
@@ -73,2 +63,2 @@ console.log(item, index); | ||
[MIT](http://opensource.org/licenses/MIT) © [Sindre Sorhus](http://sindresorhus.com) | ||
MIT © [Sindre Sorhus](http://sindresorhus.com) |
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
1
2970
1
35
63
+ Addedonetime@^1.0.0
+ Addedonetime@1.1.0(transitive)