-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "express-json-error-handler",
"version": "6.1.0",
"description": "Error handler for express JSON APIs",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"lint:base": "eslint . --ext .ts",
"lint": "yarn lint:base --fix",
"format": "prettier --write '**/*.{ts,js,json}'",
"test": "vitest",
"build": "tsc",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noamokman/express-json-error-handler.git"
},
"keywords": [
"express",
"json",
"error-handler",
"api",
"error"
],
"author": {
"name": "Noam Okman"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/noamokman/express-json-error-handler/issues"
},
"homepage": "https://github.com/noamokman/express-json-error-handler#readme",
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{ts,js,json}": "prettier --write"
},
"devDependencies": {
"@osskit/eslint-config": "^1.0.25",
"@osskit/prettier-config": "^0.0.1",
"@osskit/tsconfig": "^0.0.7",
"@types/express": "^4.17.21",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^54.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}