-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.6 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.6 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "koa-better-error-handler",
"description": "A better error-handler for Lad and Koa. Makes `ctx.throw` awesome (best used with koa-404-handler)",
"version": "12.0.0",
"author": {
"name": "Nick Baugh",
"email": "niftylettuce@gmail.com",
"url": "http://niftylettuce.com/"
},
"bugs": "https://github.com/ladjs/koa-better-error-handler/issues",
"contributors": [
{
"name": "Nick Baugh",
"email": "niftylettuce@gmail.com",
"url": "http://niftylettuce.com/"
},
{
"name": "Shaun Warman",
"email": "shaunwarman1@gmail.com",
"url": "https://shaunwarman.com/"
},
{
"name": "Pablo P Varela",
"email": "yo@pablo.pink",
"url": "https://pablo.pink/"
},
{
"name": "Imed Jaberi",
"email": "imed-jaberi@outlook.com",
"url": "https://www.3imed-jaberi.com/"
}
],
"dependencies": {
"@hapi/boom": "^10.0.1",
"camelcase": "6",
"capitalize": "^2.0.4",
"fast-safe-stringify": "^2.1.1",
"html-to-text": "^9.0.5",
"humanize-string": "2",
"statuses": "^2.0.1",
"toidentifier": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@koa/router": "^13.1.0",
"c8": "^10.1.3",
"cross-env": "^7.0.3",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"get-port": "^7.1.0",
"husky": "^9.1.7",
"koa": "^2.16.3",
"koa-404-handler": "^0.1.0",
"koa-basic-auth": "^4.0.0",
"koa-connect-flash": "^0.1.2",
"koa-convert": "^2.0.0",
"koa-generic-session": "^2.3.1",
"koa-redis": "^4.0.1",
"lint-staged": "^15.5.2",
"mongodb": "^6.16.0",
"mongoose": "^8.15.1",
"redis": "^5.10.0",
"redis-errors": "^1.2.0",
"remark-cli": "^12.0.1",
"remark-preset-github": "^4.0.4",
"supertest": "^7.1.0",
"xo": "^0.60.0"
},
"engines": {
"node": ">= 18"
},
"files": [
"404.html",
"500.html",
"index.js"
],
"homepage": "https://github.com/ladjs/koa-better-error-handler",
"keywords": [
"404",
"500",
"async",
"await",
"better",
"boom",
"context",
"ctx",
"custom",
"error",
"error-handler",
"errors",
"es7",
"flash",
"handler",
"handling",
"koa",
"messages",
"override",
"promises",
"stripe"
],
"license": "MIT",
"main": "index.js",
"repository": "ladjs/koa-better-error-handler",
"scripts": {
"lint": "xo --fix && fixpack",
"prepare": "husky",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test c8 node --test test/test.js"
}
}