-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "fastify-kubernetes",
"version": "1.0.0",
"description": "Fastify Kubernetes client plugin",
"type": "module",
"main": "./fastify-kubernetes.js",
"types": "./fastify-kubernetes.d.ts",
"exports": {
"import": "./fastify-kubernetes.js",
"require": "./fastify-kubernetes.js",
"types": "./fastify-kubernetes.d.ts"
},
"scripts": {
"build": "node src/build.js",
"lint": "standard",
"test": "tap",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"keywords": [
"fastify",
"kubernetes",
"client",
"fetch"
],
"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": "^1.0.0",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"fastify": "^5.2.1",
"standard": "^17.1.2",
"tap": "^21.0.1"
}
}