forked from ducktors/arecibo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "arecibo",
"version": "2.0.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",
"prettier": "prettier --loglevel warn --write \"src/**/*.{ts,tsx}\"",
"prelint": "npm run prettier",
"lint": "tslint --fix -c tslint.json -t stylish -p ./tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nucleode/arecibo.git"
},
"keywords": [
"kubernetes",
"fastify",
"fastify-plugin",
"probe",
"liveness",
"readiness",
"pinger",
"monitoring",
"kubernetes-monitoring"
],
"author": "kubernetes-monitoring",
"license": "MIT",
"bugs": {
"url": "https://github.com/nucleode/arecibo/issues"
},
"homepage": "https://github.com/nucleode/arecibo#readme",
"devDependencies": {
"@types/node": "~14.6.0",
"fastify": "~3.3.0",
"npm-run-all": "~4.1.5",
"prettier": "~2.1.1",
"rimraf": "~3.0.2",
"tslint": "~6.1.3",
"tslint-config-prettier": "~1.18.0",
"typescript": "~4.0.2"
},
"files": [
"/lib"
],
"dependencies": {
"fastify-plugin": "~2.3.2"
}
}