-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "arecibo",
"version": "3.0.1",
"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": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"prepublishOnly": "npm run build",
"commitlint": "commitlint",
"semantic-release": "semantic-release",
"commit": "npx git-cz",
"prepare": "husky install",
"update": "npx npm-check -u"
},
"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.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/lint": "^19.2.2",
"@commitlint/prompt": "^19.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.11.19",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"commitlint-plugin-function-rules": "^4.0.0",
"cz-conventional-changelog": "^3.3.0",
"fastify": "^4.15.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"semantic-release": "^23.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.3"
},
"files": [
"/lib"
],
"dependencies": {
"fastify-plugin": "^4.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}