-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.57 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
{
"name": "testcafe-reporter-report-portal-reporter",
"version": "3.1.0",
"description": "TestCafe reporter plugin for Report Portal",
"repository": "https://github.com/rafalsep/testcafe-reporter-report-portal-reporter",
"author": {
"name": "Rafal Szczepankiewicz"
},
"main": "src/index",
"files": [
"src"
],
"scripts": {
"prettier": "prettier --write '{src,test}/**/*.js'",
"test": "jest",
"test:update": "jest -u",
"test:coverage": "jest",
"example": "node example/index.js",
"lint": "eslint {src,test}/**/*.js",
"lint:fix": "eslint {src,test}/**/*.js --fix"
},
"keywords": [
"testcafe",
"reporter",
"plugin",
"report portal"
],
"license": "MIT",
"devDependencies": {
"babel-eslint": "10.0.1",
"callsite-record": "4.1.4",
"dotenv": "16.0.2",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-testcafe-community": "2.0.0",
"jest": "29.0.3",
"prettier": "2.7.1",
"testcafe": "3.x"
},
"dependencies": {
"@reportportal/client-javascript": "5.0.15",
"strip-ansi": "6.0.1"
},
"peerDependencies": {
"testcafe": "1.x || 2.x || 3.x"
},
"jest": {
"roots": [
"src",
"test"
],
"snapshotFormat": {
"printBasicPrototype": false
},
"collectCoverageFrom": [
"src/*.js",
"!node_modules/**",
"!test/**"
],
"coverageReporters": [
"lcov",
[
"html",
{
"skipEmpty": true
}
],
"text-summary"
]
}
}