-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.78 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": "@kunalnagarco/healthie",
"version": "4.2.10",
"description": "A health check middleware for Express.js applications",
"repository": {
"type": "git",
"url": "https://github.com/kunalnagarco/healthie.git"
},
"main": "dist/index.js",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "eslint src/ --ext .ts --max-warnings 0",
"release": "semantic-release"
},
"keywords": [
"express",
"middleware",
"health",
"endpoint",
"200",
"uptime",
"status"
],
"author": "Kunal Nagar <[email protected]>",
"license": "MIT",
"lint-staged": {
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.7",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.2.1",
"express": "4.21.2",
"husky": "9.1.5",
"jest": "29.7.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"semantic-release": "24.1.0",
"sort-package-json": "2.10.1",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"peerDependencies": {
"express": ">=4.x"
},
"packageManager": "[email protected]"
}