-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ortoni-report",
"version": "4.10.0",
"description": "Playwright Report By LetCode with Koushik",
"scripts": {
"tsc": "tsc",
"build": "tsup",
"release": "npm publish",
"pack": "npm pack && node ./copy-build.mjs"
},
"bin": {
"ortoni-report": "./dist/cli.js"
},
"files": [
"dist/",
"dist/index.html",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ortoniKC/ortoni-report"
},
"keywords": [
"playwright",
"letcode",
"koushik",
"ortoni",
"ortoni-report",
"report",
"reporter"
],
"author": "Koushik Chatterjee (LetCode with Koushik)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ortoniKC/ortoni-report/issues"
},
"homepage": "https://github.com/ortoniKC/ortoni-report#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.2",
"@types/sqlite3": "^3.1.11",
"marked": "^16.0.0",
"tsup": "^8.4.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@playwright/test": "^1.58.0",
"ansi-to-html": "^0.7.2",
"commander": "^12.1.0",
"express": "^4.22.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"main": "dist/ortoni-report.js",
"module": "dist/ortoni-report.mjs",
"types": "dist/ortoni-report.d.ts",
"exports": {
".": {
"require": "./dist/ortoni-report.js",
"import": "./dist/ortoni-report.mjs"
}
}
}