-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 925 Bytes
/
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
{
"name": "fastify-kubernetes",
"version": "0.15.0",
"description": "Fastify Kubernetes client plugin",
"main": "fastify-kubernetes.js",
"types": "fastify-kubernetes.d.ts",
"scripts": {
"build": "node src/build.js",
"lint": "standard fastify-kubernetes.js test src",
"test": "tap test/index.js",
"prepublishOnly": "npm run lint && npm run build && npm run test"
},
"keywords": [
"fastify",
"kubernetes",
"client"
],
"author": "Giacomo Gregoletto",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/greguz/fastify-kubernetes.git"
},
"files": [
"fastify-kubernetes.js",
"fastify-kubernetes.d.ts"
],
"dependencies": {
"@kubernetes/client-node": "^0.22.1",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"fastify": "^5.0.0",
"proxyquire": "^2.1.3",
"standard": "^17.1.2",
"tap": "^21.0.1"
}
}