-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 941 Bytes
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 941 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
{
"name": "async-magic",
"version": "1.5.0",
"author": "Andi Dittrich (https://andidittrich.com)",
"license": "MIT",
"homepage": "https://github.com/AndiDittrich/Node.async-magic",
"bugs": "https://github.com/AndiDittrich/Node.async-magic/issues",
"repository": "AndiDittrich/Node.async-magic",
"description": "Promises FTW! A pure promised based, straight forward async library.",
"keywords": [
"promise",
"library",
"async",
"parallel",
"series",
"wait",
"sleep",
"control-flow",
"promisify",
"es2017",
"await"
],
"files": [
"lib",
"CHANGED.md",
"LICENSE.md",
"README.md"
],
"main": "async-magic.js",
"bin": {},
"preferGlobal": false,
"engines": {
"node": ">=7.6"
},
"scripts": {
"test": "eslint lib/*; mocha"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-aenondynamics": "^0.2.0",
"mocha": "^8.1.3"
}
}