-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
executable file
·62 lines (62 loc) · 1.44 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
{
"name": "@reportportal/agent-js-jest",
"version": "5.1.1",
"description": "A Jest reporter that uploads test results to ReportPortal",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-jest.git"
},
"scripts": {
"lint": "eslint . --quiet",
"format": "npm run lint -- --fix",
"test": "jest --detectOpenHandles --config ./jest.config.js",
"test:coverage": "jest --coverage"
},
"author": "ReportPortal.io",
"license": "Apache-2.0",
"engines": {
"node": ">=12.x"
},
"files": [
"src"
],
"dependencies": {
"@reportportal/client-javascript": "~5.1.4",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"bugs": {
"url": "https://github.com/reportportal/agent-js-jest/issues"
},
"homepage": "https://github.com/reportportal/agent-js-jest#readme",
"keywords": [
"reportportal",
"jest",
"rp",
"reporter",
"epam"
],
"contributors": [
{
"name": "Uladzislau Akulich"
},
{
"name": "Ringo De Smet"
},
{
"name": "Ontoforce",
"email": "https://www.ontoforce.com"
}
]
}