-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
36
37
38
39
40
41
42
{
"name": "backend.ai-webui-smoke-cli",
"version": "0.1.0-alpha.0",
"private": true,
"description": "Post-install smoke test CLI for Backend.AI WebUI. Runs a curated @smoke subset of the e2e suite against a customer endpoint and emits a self-contained HTML report.",
"repository": {
"type": "git",
"url": "https://github.com/lablup/backend.ai-webui/tree/main/packages/backend.ai-webui-smoke-cli"
},
"bugs": {
"url": "https://github.com/lablup/backend.ai-webui/issues"
},
"author": "Lablup Inc. <contact@lablup.com>",
"license": "LGPL-3.0-or-later",
"type": "module",
"bin": {
"bai-smoke": "./bin/bai-smoke.cjs"
},
"files": [
"bin",
"dist",
"playwright.smoke.config.ts",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"clean": "rimraf dist",
"smoke": "node ./bin/bai-smoke.cjs",
"list": "node ./bin/bai-smoke.cjs list",
"version:print": "node ./bin/bai-smoke.cjs version"
},
"dependencies": {
"@playwright/test": "^1.58.2",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "catalog:",
"rimraf": "^6.0.1",
"typescript": "^5.9.3"
}
}