-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.27 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
54
55
56
{
"name": "middleware-async",
"version": "1.4.0",
"description": "A handy tool to work with async/promise express middleware",
"repository": "github:tranvansang/middleware-async",
"author": "Sang Tran <[email protected]>",
"license": "MIT",
"main": "index.cjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
}
},
"scripts": {
"test": "yarn jest",
"coverage": "yarn jest --coverage",
"lint": "yarn eslint index.ts",
"prepublish": "yarn lint && yarn coverage && ./compile.sh"
},
"files": [
"index.cjs",
"index.mjs",
"index.d.cts",
"index.d.mts"
],
"keywords": [
"connect",
"express",
"async",
"middleware",
"ES6",
"promise",
"async",
"await"
],
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.35",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"flip-promise": "^1.0.5",
"jest": "^29.6.1",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}