-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "agoda-test-metrics",
"description": "Library to collect test metrics",
"version": "0.0.22",
"repository": "https://github.com/agoda-com/testresults-collector.git",
"main": "jest/index.js",
"playwright": "playwright/index.js",
"vitest": "vitest/index.js",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:ci": "jest --config ./jest.config.js",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@jest/reporters": "^29.5.0",
"@jest/types": "^29.5.0",
"@playwright/test": "^1.30.1",
"@types/jest": "^29.5.1",
"@types/luxon": "^3.3.0",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"vitest": "^0.33.0"
},
"peerDependencies": {
"jest": "24.x - 29.x",
"jest-junit": "14.x - 16.x",
"typescript": "^3.7.x || ^4.3.x || ^5.x",
"vitest": "^0.0.0"
},
"dependencies": {
"axios": "^1.4.0",
"luxon": "^3.3.0",
"safely-try": "^0.4.3",
"tslib": "^2.5.3",
"uuid": "^9.0.0"
},
"files": [
"common",
"jest",
"playwright",
"vitest"
]
}