forked from godaddy/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "kubernetes-client",
"version": "8.3.6",
"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-generated": "scripts/test-generated.sh",
"test-integration": "mocha test-integration/ --timeout 30000",
"test-typings": "tsc --project ./typings"
},
"repository": "godaddy/kubernetes-client",
"keywords": [
"kubernetes",
"kubectl",
"containers"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"files": [
"backends",
"lib",
"typings"
],
"dependencies": {
"@kubernetes/client-node": "0.10.2",
"camelcase": "^5.3.1",
"deepmerge": "^4.2.2",
"depd": "^2.0.0",
"js-yaml": "^3.13.1",
"json-stream": "^1.0.0",
"openid-client": "2.5.0",
"pump": "^3.0.0",
"qs": "^6.9.0",
"request": "^2.88.0",
"swagger-fluent": "^4.0.0",
"url-join": "^4.0.1",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/node": "^12.12.5",
"chai": "^4.1.2",
"mocha": "^6.2.2",
"mustache": "^3.1.0",
"nock": "^11.7.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"standard": "^14.3.1",
"standard-version": "^7.0.0",
"typescript": "^3.6.4",
"yargs": "^14.2.0"
},
"nyc": {
"check-coverage": true,
"lines": 80,
"functions": 70
}
}