forked from razee-io/Kubernetes-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "@razee/kubernetes-util",
"version": "0.0.0-dev",
"description": "A set of Kubernetes API utilities to facilitate resource discovery and watches",
"main": "index.js",
"keywords": [
"kubernetes",
"razee",
"razeedash"
],
"scripts": {
"start": "node index.js",
"test": "nyc --reporter=html --reporter=text mocha ",
"test:debug": "mocha --inspect-brk",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"lint": "npx npm-run-all --npm-path npm eslint yamllint markdownlint",
"eslint": "npx eslint index.js lib/ test/",
"yamllint": "npx yamllint .travis.yml",
"markdownlint": "npx markdownlint-cli README.md"
},
"repository": {
"type": "git",
"url": "[email protected]:razee-io/kubernetes-util.git"
},
"contributors": [
{
"name": "Adam King"
},
{
"name": "Alex Lewitt"
}
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.16.3",
"bunyan": "^1.8.15",
"clone": "^2.1.2",
"deepmerge": "^4.2.2",
"delay": "^5.0.0",
"fs-extra": "^10.1.0",
"JSONStream": "^1.3.5",
"object-path": "^0.11.8",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"touch": "^3.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.3.6",
"deep-equal": "^2.0.5",
"eslint": "^8.14.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^13.0.2",
"validate-commit-msg": "^1.1.3",
"yaml-lint": "^1.6.0"
}
}