-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
57
58
59
60
{
"name": "@supercharge/http-errors",
"description": "An HTTP error class throwing with proper status codes",
"version": "2.1.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/http-errors/issues"
},
"dependencies": {
"@supercharge/errors": "~2.0.1"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.3.2",
"@supercharge/tsconfig": "~4.0.0",
"@types/node": "~18.11.9",
"@typescript-eslint/eslint-plugin": "~5.43.0",
"c8": "~7.12.0",
"eslint": "~8.27.0",
"expect": "~29.3.1",
"typescript": "~4.8.4",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=16"
},
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/http-errors",
"keywords": [
"supercharge",
"superchargejs",
"http",
"error",
"errors",
"http-errors",
"nodejs",
"javascript",
"utilities"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/http-errors.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 --include=dist uvu",
"posttest": "c8 report --reporter=html"
}
}