This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "@theinternetfolks/kubernetes",
"version": "1.2.1",
"description": "Library to help you interact with Docker or Kubernetes cluster in Node-based environments.",
"main": "dist/index.js",
"scripts": {
"build": "yarn compile && yarn build:map",
"compile": "tsc",
"build:map": "tsc -d --declarationDir ./dist --declarationMap --emitDeclarationOnly",
"test": "mocha --ignore 'node_modules/**/*' -r ts-node/register --timeout 60000 --recursive --exit tests/*.ts",
"test-coverage": "c8 yarn test && c8 report -r html",
"sonar": "sonar-scanner -Dsonar.projectKey=kubernetes -Dsonar.sources=. -Dsonar.host.url=$SONAR_REMOTE_HOST -Dsonar.login=$SONAR_TOKEN -Dsonar.exclusions=coverage/**,dist/**"
},
"author": "Sameer Khan <sameer.khan@theinternetfolks.com>",
"organization": "The Internet Folks",
"repository": "https://github.com/theinternetfolks/kubernetes",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/dockerode": "^3.3.3",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"c8": "^7.10.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"kubernetes",
"k8s",
"docker",
"docker.io"
],
"dependencies": {
"@kubernetes/client-node": "^0.16.3",
"dockerode": "^3.3.1",
"js-yaml": "^4.1.0"
}
}