package.json
997 Bytes
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
39
40
41
42
43
44
45
46
47
{
"name": "async-each-series",
"version": "0.1.1",
"description": "Apply an async function to each Array element in series.",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"url": "git@github.com:jb55/async-each-series.git"
},
"scripts": {
"test": "mocha -R spec"
},
"keywords": [
"async",
"asyncEachSeries",
"eachSeries",
"each",
"asyncEach"
],
"testling": {
"harness": "mocha-bdd",
"files": "test.js",
"browsers": [
"ie/8..latest",
"chrome/28..latest",
"firefox/latest",
"safari/latest",
"opera/latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"engines": {
"node": ">=0.8.0"
},
"author": "jb55",
"license": "MIT",
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^2.0.1"
},
"_from": "async-each-series@0.1.1",
"_resolved": "http://registry.npm.taobao.org/async-each-series/download/async-each-series-0.1.1.tgz"
}