-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 768 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 768 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
{
"name": "foreach-timeout",
"version": "3.0.1",
"description": "Run callback on every array element and return array of callback results with promise",
"main": "foreach-timeout.js",
"scripts": {
"test": "mocha -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ohar/forEachTimeout.git"
},
"keywords": [
"foreach",
"timeout",
"promise",
"async",
"loop",
"array"
],
"engines": {
"node": ">=7.6.0"
},
"author": "Pavel Lysenko aka Ohar <code@ohar.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ohar/forEachTimeout/issues"
},
"homepage": "https://github.com/Ohar/forEachTimeout#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^5.2.0"
}
}