forked from scality/kubernetes-client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.26 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@kubernetes/client-node",
"version": "0.8.2",
"description": "NodeJS client for kubernetes",
"repository": {
"type": "git",
"url": "https://github.com/kubernetes-client/javascript.git"
},
"files": [
"dist/*.ts",
"dist/*.js",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --loglevel error --write './src/**/*.ts'",
"lint": "tslint --project \".\" && prettier --check './src/**/*.ts'",
"lint-examples": "tslint --project \"./examples/typescript\"",
"clean": "rm -Rf node_modules/ dist/",
"build": "tsc",
"watch": "tsc --watch",
"test": "nyc mocha",
"prepare": "npm run build"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/api.ts",
"src/index.ts",
"src/*_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/js-yaml": "^3.11.2",
"@types/node": "^10.12.0",
"@types/request": "^2.47.1",
"@types/underscore": "^1.8.9",
"@types/ws": "^6.0.1",
"byline": "^5.0.0",
"isomorphic-ws": "^4.0.1",
"js-yaml": "^3.12.0",
"jsonpath": "^1.0.0",
"request": "^2.88.0",
"shelljs": "^0.8.2",
"tslib": "^1.9.3",
"underscore": "^1.9.1",
"ws": "^6.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/mock-fs": "^3.6.30",
"chai": "^4.2.0",
"jasmine": "^3.3.0",
"mocha": "^5.2.0",
"mock-fs": "^4.7.0",
"nyc": "^13.1.0",
"prettier": "~1.16.4",
"source-map-support": "^0.5.9",
"stream-buffers": "^3.0.2",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"bugs": {
"url": "https://github.com/kubernetes-client/javascript/issues"
},
"homepage": "https://github.com/kubernetes-client/javascript#readme",
"keywords": [
"kubernetes",
"client"
],
"prettier": {
"tabWidth": 4,
"printWidth": 110,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always"
}
}