-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 832 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@osirisdev/async-iterators",
"version": "1.0.0",
"description": "Iterator functions that run each cycle of the loop asynchronously",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cjthompson/async-iterators.git"
},
"keywords": [
"iterators",
"async",
"asynchronous",
"es6",
"forEach",
"each",
"map",
"reduce",
"transform",
"promise"
],
"author": "Chris Thompson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cjthompson/async-iterators/issues"
},
"homepage": "https://github.com/cjthompson/async-iterators#readme",
"devDependencies": {
"mocha": "^2.4.5",
"must": "^0.13.1"
}
}