This repository has been archived by the owner on Jul 19, 2024. It is now read-only.
forked from reportportal/agent-js-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 1.71 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
{
"name": "@bolteu/agent-js-jest",
"version": "5.2.0",
"description": "A Detox Jest reporter that uploads test results to ReportPortal",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bolteu/agent-js-jest.git"
},
"author": "ReportPortal.io",
"contributors": [
{
"name": "Uladzislau Akulich"
},
{
"name": "Ringo De Smet"
},
{
"name": "Nikita Popov"
},
{
"name": "Ontoforce",
"email": "https://www.ontoforce.com"
}
],
"license": "Apache-2.0",
"engines": {
"node": ">=6.0.0"
},
"files": [
"index.js",
"utils",
"constants"
],
"scripts": {
"lint": "eslint . --quiet",
"format": "npm run lint -- --fix",
"test": "jest --detectOpenHandles --config ./jest.config.js",
"test:coverage": "jest --coverage",
"release:bump": "sh ./scripts/bump-version.sh",
"release:publish": "yarn changeset publish"
},
"dependencies": {
"@jest/reporters": "26.6.2",
"@reportportal/client-javascript": "^5.0.6",
"glob": "^8.0.3",
"glob-escape": "^0.0.2",
"jest-cli": "^27.0.6",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"@changesets/changelog-git": "^0.1.13",
"@changesets/cli": "^2.25.0",
"@types/jest": "^26.0.21",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3"
},
"bugs": {
"url": "https://github.com/bolteu/agent-js-jest/issues"
},
"homepage": "https://github.com/bolteu/agent-js-jest#readme",
"keywords": [
"epam",
"reportportal",
"detox",
"rp",
"jest"
]
}