UNPKG

2.55 kBJSONView Raw
1{
2 "name": "@kubernetes/client-node",
3 "version": "0.9.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 "README.md"
13 ],
14 "main": "dist/index.js",
15 "types": "dist/index.d.ts",
16 "scripts": {
17 "format": "prettier --loglevel error --write './src/**/*.ts'",
18 "lint": "tslint --project \".\" && prettier --check './src/**/*.ts' && tslint --project \"./examples/typescript\"",
19 "clean": "rm -Rf node_modules/ dist/",
20 "build": "tsc",
21 "watch": "tsc --watch",
22 "test": "nyc mocha",
23 "prepare": "npm run build"
24 },
25 "nyc": {
26 "include": [
27 "src/**/*.ts"
28 ],
29 "exclude": [
30 "src/api.ts",
31 "src/index.ts",
32 "src/*_test.ts"
33 ],
34 "extension": [
35 ".ts"
36 ],
37 "reporter": [
38 "text",
39 "lcov",
40 "text-summary",
41 "html"
42 ],
43 "sourceMap": true,
44 "instrument": true,
45 "all": true
46 },
47 "author": "Kubernetes Authors",
48 "license": "Apache-2.0",
49 "dependencies": {
50 "@types/js-yaml": "^3.11.2",
51 "@types/node": "^10.12.0",
52 "@types/request": "^2.47.1",
53 "@types/underscore": "^1.8.9",
54 "@types/ws": "^6.0.1",
55 "isomorphic-ws": "^4.0.1",
56 "js-yaml": "^3.12.0",
57 "json-stream": "^1.0.0",
58 "jsonpath-plus": "^0.19.0",
59 "request": "^2.88.0",
60 "shelljs": "^0.8.2",
61 "tslib": "^1.9.3",
62 "underscore": "^1.9.1",
63 "ws": "^6.1.0"
64 },
65 "devDependencies": {
66 "@types/chai": "^4.1.6",
67 "@types/chai-as-promised": "^7.1.0",
68 "@types/mocha": "^5.2.5",
69 "@types/mock-fs": "^3.6.30",
70 "@types/stream-buffers": "^3.0.3",
71 "chai": "^4.2.0",
72 "chai-as-promised": "^7.1.1",
73 "husky": "^2.3.0",
74 "jasmine": "^3.3.0",
75 "mocha": "^5.2.0",
76 "mock-fs": "^4.7.0",
77 "nock": "^10.0.6",
78 "nyc": "^13.3.0",
79 "prettier": "~1.16.4",
80 "source-map-support": "^0.5.9",
81 "stream-buffers": "^3.0.2",
82 "ts-mockito": "^2.3.1",
83 "ts-node": "^7.0.1",
84 "tslint": "^5.11.0",
85 "typescript": "^3.1.3"
86 },
87 "bugs": {
88 "url": "https://github.com/kubernetes-client/javascript/issues"
89 },
90 "homepage": "https://github.com/kubernetes-client/javascript#readme",
91 "keywords": [
92 "kubernetes",
93 "client"
94 ],
95 "prettier": {
96 "tabWidth": 4,
97 "printWidth": 110,
98 "trailingComma": "all",
99 "singleQuote": true,
100 "arrowParens": "always"
101 },
102 "husky": {
103 "hooks": {
104 "pre-push": "npm test && npm run lint"
105 }
106 }
107}