-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.4 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
{
"name": "@reportportal/agent-js-cucumber",
"version": "5.5.0",
"description": "Agent that connects cucumber-js with Report Portal",
"main": "./modules/index",
"scripts": {
"lint": "eslint ./modules/**/*.js",
"format": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@reportportal/client-javascript": "~5.3.0",
"strip-ansi": "^6.0.1"
},
"engines": {
"node": ">=14.x"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^3.8.0",
"jest": "^29.7.0",
"prettier": "^2.8.8"
},
"peerDependencies": {
"@cucumber/cucumber": "7.x - 11.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-cucumber"
},
"files": [
"/modules"
],
"keywords": [
"reportportal",
"rp",
"cucumber",
"cucumber-reporter",
"reporter",
"cucumber-js"
],
"author": "reportportal.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reportportal/agent-js-cucumber/issues"
},
"homepage": "https://github.com/reportportal/agent-js-cucumber#readme"
}