-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "arecibo",
"version": "3.1.0",
"description": "Fastify plugin that respondes to kubernetes readiness and liveness probes.",
"main": "./lib",
"types": "./lib/index.d.ts",
"scripts": {
"type-check": "tsc -p ./tsconfig.json --noEmit",
"clean-build": "rimraf ./lib && mkdir lib",
"prebuild": "npm-run-all clean-build lint type-check",
"build": "tsc -p ./tsconfig.json",
"preinstall": "npx only-allow npm",
"prettier": "prettier --log-level warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepublishOnly": "npm run build",
"commitlint": "commitlint",
"semantic-release": "semantic-release",
"commit": "npx git-cz",
"prepare": "husky install",
"update": "npx npm-check -u",
"test": "node --test --require ts-node/register src/index.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ducktors/arecibo.git"
},
"keywords": [
"kubernetes",
"fastify",
"fastify-plugin",
"probe",
"liveness",
"readiness",
"pinger",
"monitoring",
"kubernetes-monitoring"
],
"author": "kubernetes-monitoring",
"license": "MIT",
"bugs": {
"url": "https://github.com/ducktors/arecibo/issues"
},
"homepage": "https://github.com/ducktors/arecibo#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/lint": "^19.6.0",
"@commitlint/prompt": "^19.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.10.5",
"commitizen": "^4.3.1",
"commitlint-config-cz": "^0.13.3",
"commitlint-plugin-function-rules": "^4.0.1",
"cz-conventional-changelog": "^3.3.0",
"fastify": "^5.2.1",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"typescript": "^5.4.2",
"ts-node": "^10.9.2"
},
"files": [
"/lib"
],
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"engines": {
"node": ">=20.0.0"
}
}