-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "await-resolver",
"version": "2.0.0",
"description": "An easy-to-use **async/await wrapper** to resolve any asynchronous tasks. Await-resolver always returns an array of type `[error, result]` **ensuring consistent error handling** and it provides **a timeout functionality to delay/timeout an execution**. With await-resolver you don't have to use try/catch blocks or callbacks.",
"main": "index.js",
"exports": {
"import": "./wrapper.mjs",
"require": "./index.js"
},
"scripts": {
"test": "node --trace-uncaught --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/kossidts/await-resolver.git"
},
"homepage": "https://github.com/kossidts/await-resolver#readme",
"bugs": {
"url": "https://github.com/kossidts/await-resolver/issues"
},
"keywords": [
"await resolver",
"async",
"await",
"resolver",
"promise",
"timeout",
"delay",
"sleep",
"resolve",
"reject",
"error first",
"try",
"catch"
],
"type": "commonjs",
"author": "Kossi D. T. Saka",
"license": "MIT",
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testMatch": [
"**/test/**/*.test.js"
],
"verbose": true,
"transform": {}
},
"files": [
"index.js",
"wrapper.mjs"
]
}