UNPKG

2.97 kBJSONView Raw
1{
2 "name": "@kubernetes/client-node",
3 "version": "0.14.1",
4 "description": "NodeJS client for kubernetes",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/kubernetes-client/javascript.git"
8 },
9 "files": [
10 "dist/*.ts",
11 "dist/*.js",
12 "dist/gen/*.ts",
13 "dist/gen/*.js",
14 "dist/gen/**/*.ts",
15 "dist/gen/**/*.js",
16 "README.md"
17 ],
18 "main": "dist/index.js",
19 "types": "dist/index.d.ts",
20 "scripts": {
21 "format": "prettier --loglevel error --write \"./src/**/*.ts\"",
22 "lint": "tslint --project \".\" && prettier --check \"./src/**/*.ts\" && tslint --project \"./examples/typescript\"",
23 "clean": "rm -Rf node_modules/ dist/",
24 "build": "tsc",
25 "generate": "./generate-client.sh",
26 "watch": "tsc --watch",
27 "test": "nyc mocha",
28 "prepare": "npm run build",
29 "prepack": "npm run build",
30 "docs": "typedoc src/gen/api"
31 },
32 "nyc": {
33 "include": [
34 "src/**/*.ts"
35 ],
36 "exclude": [
37 "src/gen/*/**.ts",
38 "src/index.ts",
39 "src/*_test.ts"
40 ],
41 "extension": [
42 ".ts"
43 ],
44 "reporter": [
45 "text",
46 "lcov",
47 "text-summary",
48 "html"
49 ],
50 "sourceMap": true,
51 "instrument": true,
52 "all": true
53 },
54 "author": "Kubernetes Authors",
55 "license": "Apache-2.0",
56 "dependencies": {
57 "@types/js-yaml": "^3.12.1",
58 "@types/node": "^10.12.0",
59 "@types/request": "^2.47.1",
60 "@types/stream-buffers": "^3.0.3",
61 "@types/tar": "^4.0.3",
62 "@types/underscore": "^1.8.9",
63 "@types/ws": "^6.0.1",
64 "byline": "^5.0.0",
65 "execa": "1.0.0",
66 "isomorphic-ws": "^4.0.1",
67 "js-yaml": "^3.13.1",
68 "jsonpath-plus": "^0.19.0",
69 "openid-client": "^4.1.1",
70 "request": "^2.88.0",
71 "rfc4648": "^1.3.0",
72 "shelljs": "^0.8.2",
73 "stream-buffers": "^3.0.2",
74 "tar": "^6.0.2",
75 "tmp-promise": "^3.0.2",
76 "tslib": "^1.9.3",
77 "underscore": "^1.9.1",
78 "ws": "^7.3.1"
79 },
80 "devDependencies": {
81 "@types/byline": "^4.2.31",
82 "@types/chai": "^4.1.6",
83 "@types/chai-as-promised": "^7.1.0",
84 "@types/mocha": "^5.2.7",
85 "@types/mock-fs": "^3.6.30",
86 "chai": "^4.2.0",
87 "chai-as-promised": "^7.1.1",
88 "husky": "^2.3.0",
89 "jasmine": "^3.3.0",
90 "mocha": "^6.1.4",
91 "mock-fs": "^4.7.0",
92 "nock": "^10.0.6",
93 "nyc": "^15.1.0",
94 "prettier": "~1.16.4",
95 "source-map-support": "^0.5.9",
96 "ts-mockito": "^2.3.1",
97 "ts-node": "^8.2.0",
98 "tslint": "^5.17.0",
99 "typedoc": "^0.20.25",
100 "typescript": "^4.1.3"
101 },
102 "bugs": {
103 "url": "https://github.com/kubernetes-client/javascript/issues"
104 },
105 "homepage": "https://github.com/kubernetes-client/javascript#readme",
106 "keywords": [
107 "kubernetes",
108 "client"
109 ],
110 "prettier": {
111 "tabWidth": 4,
112 "printWidth": 110,
113 "trailingComma": "all",
114 "singleQuote": true,
115 "arrowParens": "always"
116 },
117 "husky": {
118 "hooks": {
119 "pre-push": "npm test && npm run lint"
120 }
121 }
122}