-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.3 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.3 KB
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
{
"name": "keylime-webtool-test",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "Apache-2.0",
"description": "BDD functional test suite for the Keylime Monitoring Dashboard",
"scripts": {
"test": "node --import tsx/esm node_modules/.bin/cucumber-js",
"test:standalone": "CUCUMBER_PROFILE=standalone node --import tsx/esm node_modules/.bin/cucumber-js",
"test:cockpit": "CUCUMBER_PROFILE=cockpit node --import tsx/esm node_modules/.bin/cucumber-js",
"test:api": "CUCUMBER_PROFILE=api node --import tsx/esm node_modules/.bin/cucumber-js",
"test:dry": "node --import tsx/esm node_modules/.bin/cucumber-js --dry-run",
"lint": "eslint src --max-warnings 0",
"typecheck": "tsc --noEmit",
"playwright:install": "playwright install chrome",
"report:html": "tsx src/support/traceability-reporter.ts"
},
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"@mockoon/cli": "^9.6.1",
"@playwright/test": "^1.52.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"eslint": "^9.0.0",
"jsonwebtoken": "^9.0.0",
"multiple-cucumber-html-reporter": "^3.8.0",
"playwright": "^1.52.0",
"tsx": "^4.19.0",
"typescript": "~5.8.0",
"typescript-eslint": "^8.0.0",
"ws": "^8.20.1"
}
}