-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "express-asyncify",
"version": "3.1.0",
"description": "Easy support async/await to express",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"repository": "pkolt/express-asyncify",
"scripts": {
"test": "node --test ./lib/*.test.js",
"test-only": "node --test --test-only ./lib/*.test.js",
"//! chrome://inspect": "",
"test-debug": "node --test --test-only --inspect-brk --test-concurrency=1 ./lib/*.test.js",
"coverage": "node --test --experimental-test-coverage ./lib/*.test.js",
"format": "prettier --check lib",
"format-fix": "prettier --write lib",
"release": "release-it"
},
"keywords": [
"express",
"async",
"await"
],
"bugs": {
"url": "https://github.com/pkolt/express-asyncify/issues",
"email": "[email protected]"
},
"author": "Pavel Koltyshev <[email protected]>",
"files": [
"README.md",
"LICENSE.md",
"lib/index.js",
"lib/index.d.ts"
],
"license": "MIT",
"engines": {
"node": ">= 20"
},
"devDependencies": {
"prettier": "^3.3.1",
"release-it": "^17.3.0",
"supertest": "^7.0.0"
},
"peerDependencies": {
"express": "^4.19.2"
}
}