-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "@reportportal/agent-js-mocha",
"version": "5.1.0",
"description": "Agent to integrate Mocha with ReportPortal.",
"author": "ReportPortal.io",
"scripts": {
"lint": "eslint . --quiet",
"format": "npm run lint -- --fix",
"test": "jest --detectOpenHandles --config ./jest.config.js",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@reportportal/client-javascript": "~5.1.4",
"mocha": "^10.7.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"/lib"
],
"main": "index.js",
"engines": {
"node": ">=12.x"
},
"license": "Apache 2.0",
"devDependencies": {
"@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-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^29.7.0",
"prettier": "^2.8.8"
},
"bugs": {
"url": "https://github.com/reportportal/agent-js-mocha/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-mocha"
},
"contributors": [
{
"name": "Alexander Galichenko",
"email": "[email protected]"
},
{
"name": "Vitalii Fedosieiev"
}
],
"keywords": [
"reportportal",
"mocha",
"reports",
"reporter",
"rp",
"epam"
]
}