-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
103 lines (103 loc) · 3.99 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
99
100
101
102
103
{
"name": "@snyk/kubernetes-monitor",
"private": true,
"description": "Snyk Kubernetes Monitoring Container",
"repository": {
"type": "git",
"url": "https://github.com/snyk/kubernetes-monitor.git"
},
"license": "private",
"author": "snyk.io",
"main": "dist/index.js",
"scripts": {
"local": "./scripts/local-testing.sh",
"pretest": "./scripts/docker/build-image.sh",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration:kind:helm",
"test:unit": "jest --logHeapUsage --ci --bail --forceExit test/unit",
"test:system": "jest --logHeapUsage --ci --maxWorkers=1 --forceExit test/system",
"test:integration:kind:yaml": "DEPLOYMENT_TYPE=YAML TEST_PLATFORM=kind CREATE_CLUSTER=true jest --logHeapUsage --ci --maxWorkers=1 test/integration/kubernetes.spec.ts",
"test:integration:kind:helm": "DEPLOYMENT_TYPE=Helm TEST_PLATFORM=kind CREATE_CLUSTER=true jest --logHeapUsage --ci --maxWorkers=1 test/integration/kubernetes.spec.ts",
"test:integration:kind:proxy": "DEPLOYMENT_TYPE=Proxy TEST_PLATFORM=kind CREATE_CLUSTER=true jest --logHeapUsage --ci --maxWorkers=1 test/integration/kubernetes.spec.ts",
"test:integration:eks:yaml": "DEPLOYMENT_TYPE=YAML TEST_PLATFORM=eks CREATE_CLUSTER=false jest --logHeapUsage --ci --maxWorkers=1 test/integration/kubernetes.spec.ts",
"test:integration:aks:yaml": "DEPLOYMENT_TYPE=YAML TEST_PLATFORM=aks CREATE_CLUSTER=false jest --logHeapUsage --ci --maxWorkers=1 test/integration/kubernetes.spec.ts",
"test:coverage": "npm run test:unit -- --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"start": "bin/start",
"build": "tsc",
"dev": "tsc-watch --project tsconfig.json --onSuccess 'node --inspect .'",
"debug": "tsc-watch --project tsconfig.json --onSuccess 'node --inspect-brk .'",
"lint": "npm run lint:commit && npm run lint:eslint && npm run lint:circular",
"lint:eslint": "eslint \"src/**/*.ts\" && (cd test && eslint \"**/*.ts\")",
"lint:commit": "commitlint --from=$(git rev-parse origin/staging)",
"lint:circular": "fadge detect-cycles --allow-ignores=true \"./{src,test}/**/*.ts\"",
"format": "prettier --write '{src,test}/**/*.{js,ts,json,yml}'",
"format:check": "prettier --check '{src,test}/**/*.{js,ts,json,yml}'"
},
"dependencies": {
"@kubernetes/client-node": "^0.22.3",
"@snyk/dep-graph": "^2.9.0",
"async": "^3.2.6",
"aws-sdk": "^2.1692.0",
"bunyan": "^1.8.15",
"child-process-promise": "^2.2.1",
"fastq": "^1.17.1",
"fs-extra": "^10.1.0",
"lru-cache": "^6.0.0",
"needle": "^3.3.1",
"packageurl-js": "^1.2.1",
"sleep-promise": "^9.1.0",
"snyk-config": "5.3.0",
"snyk-docker-plugin": "6.13.0-hotfix",
"source-map-support": "^0.5.21",
"tunnel": "0.0.6",
"typescript": "4.9.5",
"yaml": "^2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@types/async": "^3.2.24",
"@types/child-process-promise": "^2.2.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^26.0.24",
"@types/lru-cache": "^5.1.1",
"@types/needle": "^2.5.3",
"@types/node": "^16.18.119",
"@types/source-map-support": "^0.5.10",
"@types/tunnel": "0.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^3.4.1",
"fadge": "^0.0.1",
"jasmine-fail-fast": "^2.0.1",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^2.8.8",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-watch": "^4.6.2"
},
"release": {
"branches": "staging",
"verifyConditions": [
"@semantic-release/github"
],
"publish": [
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"snyk": true,
"overrides": {
"@kubernetes/client-node": {
"ws": "8.17.1"
},
"cross-spawn": "^7.0.5"
}
}