forked from razee-io/WatchKeeper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.44 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
{
"name": "watch-keeper",
"version": "0.0.1",
"description": "Observe Kubernetes changes",
"main": "src/index.js",
"watch": {
"test": {
"patterns": [
"src",
"test"
],
"extensions": "js",
"quiet": true,
"legacyWatch": true,
"delay": 2500,
"runOnChangeOnly": true
}
},
"scripts": {
"start": "node src/index.js",
"watch": "npm-watch",
"test": "KUBECONFIG=./testdata/kubeconfig.yaml nyc --all --reporter=html --reporter=text mocha ",
"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",
"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": "node_modules/.bin/markdownlint *.md"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.10.1",
"@razee/kubernetes-util": "0.0.7",
"JSONStream": "^1.3.5",
"agentkeepalive": "^4.0.0",
"array-flatten": "^2.1.2",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"clone": "^2.1.2",
"deep-equal": "^1.0.1",
"deepmerge": "^4.0.0",
"delay": "^4.1.0",
"express": "^4.17.1",
"fs-extra": "^8.0.1",
"http-status": "^1.3.1",
"json-stream": "^1.0.0",
"object-hash": "^1.3.1",
"object-path": "^0.11.4",
"promise-retry": "^1.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"requestretry": "^4.0.0",
"touch": "^3.1.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"audit-ci": "^2.0.0",
"chai": "^4.2.0",
"chai-json-equal": "0.0.1",
"dockerlint": "^0.3.9",
"eslint": "^6.0.0",
"jsonlint": "^1.6.3",
"markdownlint-cli": "^0.18.0",
"mocha": "^6.1.4",
"mustache": "^3.0.1",
"nock": "^11.1.0",
"npm-check-updates": "^3.1.10",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"shellcheck": "^0.3.0",
"sinon": "^7.2.2",
"yaml-lint": "^1.2.4"
}
}