-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "codeceptjs-rphelper",
"version": "3.0.0",
"description": "Reportportal helper for Codecept JS tests",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kobenguyent/codeceptjs-rphelper.git"
},
"keywords": [
"codeceptJS",
"codeceptjs",
"browserstack",
"codeceptjs-reportportal",
"codeceptjs-rphelper"
],
"author": "kobenguyent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobenguyent/codeceptjs-rphelper/issues"
},
"homepage": "https://github.com/kobenguyent/codeceptjs-rphelper#readme",
"main": "index.js",
"scripts": {
"acceptance_test": "mocha test/acceptance_test.js --timeout 50000",
"bdd_acceptance_test": "mocha test/bdd_acceptance_test.js --timeout 50000",
"test": "npm run acceptance_test && npm run bdd_acceptance_test",
"lint": "biome lint constants/*.js helpers/*.js index.js && biome format constants/*.js helpers/*.js index.js",
"lint:fix": "biome check constants/*.js helpers/*.js index.js --apply-unsafe && biome format constants/*.js helpers/*.js index.js --write"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@faker-js/faker": "8.3.1",
"@types/node": "20.10.5",
"eslint": "6.6.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2"
},
"peerDependencies": {
"codeceptjs": "3.5.12"
},
"dependencies": {
"@reportportal/client-javascript": "5.0.14",
"assert": "2.1.0",
"axios": "1.6.2",
"chai": "4.3.10",
"joi": "17.11.0",
"lodash": "4.17.21",
"mocha": "10.2.0",
"playwright": "1.39.0",
"sleep-promise": "9.1.0",
"ts-node": "10.9.2"
}
}