forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.9 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@kubernetes/client-node",
"version": "0.6.0",
"description": "NodeJS client for kubernetes",
"repository": {
"type": "git",
"url": "git+https://github.com/kubernetes-client/javascript.git"
},
"files": [
"dist/*.ts",
"dist/*.js",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project \".\"",
"clean": "rm -Rf node_modules/ dist/",
"build": "tsc",
"watch": "tsc --watch",
"test": "nyc mocha"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/api.ts",
"src/config_test.ts"
],
"extension": [
".ts"
],
"reporter": [
"text",
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"author": "Kubernetes Authors",
"license": "Apache-2.0",
"dependencies": {
"@types/base-64": "^0.1.2",
"@types/bluebird": "^3.5.7",
"@types/js-yaml": "^3.5.31",
"@types/mock-fs": "^3.6.30",
"@types/node": "^8.0.2",
"@types/request": "^2.47.0",
"@types/underscore": "^1.8.1",
"@types/websocket": "0.0.38",
"base-64": "^0.1.0",
"bluebird": "^3.3.5",
"byline": "^5.0.0",
"js-yaml": "^3.5.2",
"jsonpath": "^1.0.0",
"request": "^2.72.0",
"shelljs": "^0.7.8 ",
"underscore": "^1.8.3",
"websocket": "^1.0.25"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.0.2",
"jasmine": "^2.8.0",
"mocha": "^5.2.0",
"mock-fs": "^4.6.0",
"nyc": "^12.0.2",
"source-map-support": "^0.5.9",
"ts-node": "^3.1.0",
"tslint": "^5.10.0",
"typescript": "^2.6.2"
},
"bugs": {
"url": "https://github.com/kubernetes-client/javascript/issues"
},
"homepage": "https://github.com/kubernetes-client/javascript#readme",
"keywords": [
"kubernetes",
"client"
]
}