-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "@razee/watchkeeper",
"version": "0.0.0-dev",
"description": "Observe Kubernetes changes",
"main": "./src/index.js",
"bin": "./bin/watchkeeper",
"scripts": {
"start": "node src/index.js",
"test": "KUBECONFIG=./testdata/kubeconfig.yaml nyc --all --reporter=html --reporter=text mocha --timeout 30000 ",
"test:debug": "KUBECONFIG=./testdata/kubeconfig.yaml mocha --inspect-brk",
"check-coverage": "KUBECONFIG=./testdata/kubeconfig.yaml nyc check-coverage --statements 35 --branches 20 --functions 25 --lines 35",
"lint": "run-s eslint dockerlint yamllint jsonlint shlint markdownlint",
"eslint": "npx eslint src/ test/",
"dockerlint": "npx dockerlint Dockerfile",
"jsonlint": "npx jsonlint --quiet .eslintrc.json && npx jsonlint --quiet build/viewTemplate.json && npx jsonlint --quiet package.json && npx jsonlint --quiet package-lock.json",
"yamllint": "npx yamllint .travis.yml kubernetes/watch-keeper/*.yaml",
"shlint": "shellcheck build/*.sh",
"markdownlint": "npx markdownlint-cli *.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razee-io/WatchKeeper.git"
},
"contributors": [
{
"name": "Alex Lewitt"
},
{
"name": "Adam King"
}
],
"publishConfig": {
"access": "public"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.22.2",
"@razee/kubernetes-util": "^1.1.20",
"@razee/request-util": "^1.0.4",
"agentkeepalive": "^4.5.0",
"bunyan": "^1.8.15",
"chokidar": "^3.6.0",
"fs-extra": "^10.1.0",
"JSONStream": "^1.3.5",
"object-hash": "^3.0.0",
"object-path": "^0.11.8",
"promise-retry": "^2.0.1",
"touch": "^3.1.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"chai": "^4.3.6",
"deep-equal": "^2.2.3",
"dockerlint": "^0.3.9",
"eslint": "^8.57.0",
"markdownlint-cli": "^0.42.0",
"mocha": "^10.8.2",
"mustache": "^4.2.0",
"nock": "^13.5.6",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"shellcheck": "^1.1.0",
"sinon": "^13.0.2",
"yaml-lint": "^1.7.0"
}
}