-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "error-manager-helper",
"type": "module",
"version": "4.14.0",
"description": "Express error middleware manager",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"type-check": "npx @arethetypeswrong/cli",
"build-raw": "tsup",
"build": "npx eslint src test && tsup",
"test-only": "bash test-only.sh",
"test": "vitest --typecheck --coverage --disable-console-intercept --watch=false",
"test:watch": "vitest --typecheck --watch",
"test:integration": "vitest run --typecheck --testTimeout=300000 --coverage --disable-console-intercept --watch=false --config vitest.integration.config.ts",
"test:unit": "vitest run --typecheck --testTimeout=300000 --coverage --disable-console-intercept --watch=false --config vitest.unit.config.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/CyberT33N/ErrorManager.git"
},
"keywords": [
"error",
"middleware",
"manager"
],
"author": "CyberT33N",
"license": "MIT",
"bugs": {
"url": "https://github.com/CyberT33N/ErrorManager/issues"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.12.11",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^2.1.2",
"axios": "^1.6.8",
"eslint": "^9.12.0",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"glob": "^10.3.15",
"globals": "^15.2.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"http-status-codes": "^2.3.0"
}
}