-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@reportportal/agent-js-vitest",
"version": "5.1.1",
"description": "Agent to integrate Vitest with ReportPortal.",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint \"src/**/*.ts\"",
"format": "npm run lint -- --fix",
"postbuild": "mkdir -p build && cp -R src/scripts build/",
"test": "jest",
"test:coverage": "jest --coverage"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js"
},
"./setup": {
"import": "./build/scripts/setup.js",
"require": "./build/scripts/setup.js"
}
},
"files": [
"/build"
],
"dependencies": {
"@reportportal/client-javascript": "~5.3.0"
},
"devDependencies": {
"vitest": "^1.6.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-vitest.git"
},
"author": "ReportPortal.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reportportal/agent-js-vitest/issues"
},
"homepage": "https://github.com/reportportal/agent-js-vitest#readme",
"engines": {
"node": ">=16.x"
},
"keywords": [
"vitest",
"reportportal",
"reporters",
"reports",
"portal",
"epam"
],
"contributors": [
{
"name": "Ilya Hancharyk",
"email": "[email protected]"
}
]
}