-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "kubernetes-client",
"version": "9.0.0",
"description": "Simplified Kubernetes API client.",
"main": "lib/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"coverage": "nyc mocha 'lib/**/*.test.js'",
"docs": "node scripts/docs.js --builtins",
"typings": "node scripts/typings.js --spec lib/specs/swagger-1.13.json.gz --output typings/index.d.ts",
"lint": "standard --fix",
"release": "standard-version --tag-prefix=''",
"test": "standard && mocha 'lib/**/*.test.js' 'backends/**/*.test.js' && npm run test-typings && npm run test-generated",
"test-10": "standard && mocha 'lib/**/*.test.js' 'backends/**/*.test.js' && npm run test-typings",
"test-generated": "scripts/test-generated.sh",
"test-integration": "integration/run-mocha.sh integration/test --timeout 30000",
"test-typings": "tsc --project ./typings"
},
"repository": "godaddy/kubernetes-client",
"keywords": [
"kubernetes",
"kubectl",
"containers"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"engines": {
"node": ">=10.13.0"
},
"files": [
"backends",
"lib",
"typings"
],
"dependencies": {
"@kubernetes/client-node": "0.10.2",
"camelcase": "^6.0.0",
"deepmerge": "^4.2.2",
"depd": "^2.0.0",
"js-yaml": "^3.13.1",
"json-stream": "^1.0.0",
"openid-client": "^3.14.0",
"pump": "^3.0.0",
"qs": "^6.9.0",
"request": "^2.88.2",
"swagger-fluent": "^5.0.3",
"url-join": "^4.0.1",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/node": "13.13.4",
"chai": "4.2.0",
"mocha": "7.1.2",
"mustache": "4.0.1",
"nock": "12.0.3",
"nyc": "15.0.1",
"sinon": "9.0.2",
"standard": "14.3.3",
"standard-version": "7.1.0",
"typescript": "3.8.3",
"yargs": "15.3.1"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"functions": 70
}
}