forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.84 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@kubernetes/client-node",
"version": "0.20.0",
"description": "NodeJS client for kubernetes",
"repository": {
"type": "git",
"url": "https://github.com/kubernetes-client/javascript.git"
},
"files": [
"dist/*.ts",
"dist/*.js",
"dist/gen/*.ts",
"dist/gen/*.js",
"dist/gen/**/*.ts",
"dist/gen/**/*.js",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --loglevel error --write \"./src/**/*.ts\"",
"lint": "tslint --project \".\" && prettier --check \"./src/**/*.ts\" && tslint --project \"./examples/typescript\"",
"clean": "rm -Rf node_modules/ dist/",
"build": "tsc",
"generate": "./generate-client.sh",
"watch": "tsc --watch",
"test": "nyc mocha",
"prepare": "npm run build",
"prepack": "npm run build",
"docs": "typedoc src/gen/api.ts"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/gen/*/**.ts",
"src/index.ts",
"src/*_test.ts"
],
"extension": [
".ts"
],
"reporter": [
"text",
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"author": "Kubernetes Authors",
"license": "Apache-2.0",
"dependencies": {
"@types/js-yaml": "^4.0.1",
"@types/node": "^20.1.1",
"@types/request": "^2.47.1",
"@types/ws": "^8.5.3",
"byline": "^5.0.0",
"isomorphic-ws": "^5.0.0",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^7.2.0",
"request": "^2.88.0",
"rfc4648": "^1.3.0",
"stream-buffers": "^3.0.2",
"tar": "^6.1.11",
"tslib": "^2.4.1",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/byline": "^4.2.31",
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^10.0.1",
"@types/mock-fs": "^4.13.1",
"@types/stream-buffers": "^3.0.3",
"@types/tar": "^6.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"husky": "^8.0.3",
"jasmine": "^5.0.0",
"mocha": "^10.1.0",
"mock-fs": "^5.2.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"prettier": "~3.1.0",
"source-map-support": "^0.5.9",
"ts-mockito": "^2.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typedoc": "^0.25.0",
"typescript": "~5.2.2"
},
"optionalDependencies": {
"openid-client": "^5.3.0"
},
"bugs": {
"url": "https://github.com/kubernetes-client/javascript/issues"
},
"homepage": "https://github.com/kubernetes-client/javascript#readme",
"keywords": [
"kubernetes",
"client"
],
"prettier": {
"tabWidth": 4,
"printWidth": 110,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run lint"
}
},
"overrides": {
"colors": "1.4.0"
}
}