forked from davidbanham/express-async-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@csnw/express-async-errors",
"version": "4.0.0",
"description": "Async/await error handling support for expressjs",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"coverage": "nyc mocha test.js",
"report": "nyc report --reporter=html",
"update-types": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir .",
"test": "mocha test.js",
"lint": "eslint .",
"precommit": "npm run lint"
},
"repository": "CSNW/express-async-errors",
"keywords": [
"express",
"expressjs",
"async",
"await",
"error"
],
"author": "matt.mower@cornerstonenw.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/CSNW/express-async-errors/issues"
},
"homepage": "https://github.com/CSNW/express-async-errors#readme",
"peerDependencies": {
"express": "^4"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"express": "^4.19.2",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"supertest": "^7.0.0",
"typescript": "^5.4.5"
}
}