-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "@zealteam/testrail-reporter",
"version": "1.0.15",
"description": "A custom reporter for Vitest, Jest, and Playwright designed to synchronize with Testrail.",
"author": "Davit Manukyan <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/zealous-tech/testrail-reporter.git"
},
"engines": {
"node": ">=10.0.0"
},
"main": "index.js",
"files": [
"/src",
"index.js",
"testrail.config.js"
],
"scripts": {
"jest": "jest",
"playwright": "playwright",
"vitest": "vitest"
},
"keywords": [
"vitest",
"jest",
"playwright",
"reporter",
"test",
"testrail"
],
"license": "MIT",
"dependencies": {
"@dlenroc/testrail": "^1.9.1",
"@playwright/test": "^1.40.1",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"log4js": "^6.9.1",
"node-schedule": "^2.1.1",
"playwright": "^1.40.1",
"vitest": "^1.6.0"
},
"directories": {
"test": "tests"
},
"bugs": {
"url": "https://github.com/zealous-tech/testrail-reporter/issues"
},
"homepage": "https://github.com/zealous-tech/testrail-reporter#readme",
"devDependencies": {
"@types/node": "^20.11.6",
"@types/node-schedule": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"path": "^0.12.7",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
}
}