UNPKG

2.04 kBJSONView Raw
1{
2 "name": "@kubernetes/client-node",
3 "version": "0.8.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 "lint": "tslint --project \".\"",
18 "lint-examples": "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 "byline": "^5.0.0",
56 "isomorphic-ws": "^4.0.1",
57 "js-yaml": "^3.12.0",
58 "jsonpath": "^1.0.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/mocha": "^5.2.5",
68 "@types/mock-fs": "^3.6.30",
69 "chai": "^4.2.0",
70 "jasmine": "^3.3.0",
71 "mocha": "^5.2.0",
72 "mock-fs": "^4.7.0",
73 "nyc": "^13.1.0",
74 "source-map-support": "^0.5.9",
75 "stream-buffers": "^3.0.2",
76 "ts-mockito": "^2.3.1",
77 "ts-node": "^7.0.1",
78 "tslint": "^5.11.0",
79 "typescript": "^3.1.3"
80 },
81 "bugs": {
82 "url": "https://github.com/kubernetes-client/javascript/issues"
83 },
84 "homepage": "https://github.com/kubernetes-client/javascript#readme",
85 "keywords": [
86 "kubernetes",
87 "client"
88 ]
89}