forked from reportportal/agent-js-cucumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "reportportal-agent-cucumber",
"version": "2.0.6",
"description": "Agent that connects cucumber-js with report portal ",
"main": "./modules/index",
"spec": "cucumber version >=4.x <=6.x",
"dependencies": {
"reportportal-client": "^5.5.0"
},
"devDependencies": {
"chromedriver": "^79.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^3.5.0",
"prettier": "^1.19.1",
"selenium-webdriver": "^3.5.0"
},
"peerDependencies": {
"cucumber": "4.x - 6.x"
},
"scripts": {
"lint": "eslint ./modules/**/*.js",
"format": "npm run lint -- --fix",
"example:simple": "cd examples && npm run simpleTest",
"example:simpleWithRetries": "cd examples && npm run simpleTestWithRetries",
"example:seleniumWebdriver": "cd examples && npm run seleniumWebdriverTest",
"example:attachments": "cd examples && npm run attachmentTest",
"example:all": "cd examples && npm run allTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-cucumber"
},
"keywords": [
"cucumber-reporter",
"reportportal",
"reporter"
],
"author": "Uladzimir Paliakou",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reportportal/agent-js-cucumber/issues"
},
"homepage": "https://github.com/reportportal/agent-js-cucumber#readme"
}