-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (25 loc) · 872 Bytes
/
package.json
File metadata and controls
26 lines (25 loc) · 872 Bytes
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
{
"name": "@securecodebox/integration-tests",
"version": "1.0.0",
"description": "Integration Tests running on a real k8s cluster",
"main": "helpers",
"scripts": {
"test:unit": "jest --verbose --testPathIgnorePatterns /integration-tests/ --ci --colors --coverage --passWithNoTests",
"test:integration": "jest --verbose --ci --colors --coverage --passWithNoTests",
"test:helpers": "jest helpers.test.js --verbose --ci --colors --coverage --passWithNoTests"
},
"keywords": [],
"author": "iteratec GmbH",
"license": "Apache-2.0",
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.4.2",
"@kubernetes/client-node": "^0.19.0",
"@securecodebox/parser-sdk-nodejs": "file:../../parser-sdk/nodejs"
},
"dependencies": {
"@kubernetes/client-node": "^0.19.0",
"@types/jest": "^29.5.14",
"ts-jest": "^29.2.5"
}
}